- π Currently working as .Net developer in Kasperky team of ForPeople product
- π¬ Ask me everything about .Net, let's google it together π
βοΈ Tg: https://t.me/tioves
namespace Life
{
public static class Me
{
public static string Name { get; } = "Igor";
public static int Age { get; private set; } = 21;
public static List<string> Skills { get; } = new()
{
".Net core",
"Entity framework core",
"MSSQL",
"PostgreSQL",
"RabbitMQ",
"OOP",
"N-Unit testing"
};
public static Dictionary<string, string> LanguagesAndLevel { get; } = new()
{
{ "English", "Intermediate" },
{ "Russian", "Native" }
};
}
}


