Hard Skills
-
HTML
-
CSS
-
JS
-
C# (.NET Core, ASP.NET)
-
MySQL
-
Clickhouse
-
MS SQL Server
-
Apache Kafka
-
Git
Code
static public class EnumExtensions
{
public static TAttribute GetAttribute<TAttribute>(this Enum enumValue) where TAttribute: Attribute
{
return enumValue.GetType()
.GetMember(enumValue.ToString())
.First()
.GetCustomAttribute<TAttribute>();
}
public static void DoSomthing(string text = "World")
{
Action<string> welcome = (x) => { Console.WriteLine($"Hello {x}!"); };
welcome.Invoke(text);
}
}
My Projects
Education
Languages
-
Russian (C2)
-
English (A2)