public static void Main()
Console.WriteLine($"Compare two same static get-only property with default: {Abc<object>.BlankGetProperty == Abc<object>.BlankGetProperty}");
Console.WriteLine($"Compare two same static expression properties: {Abc<object>.BlankExpressionProperty == Abc<object>.BlankExpressionProperty}");
public static class Abc<T> where T : new()
public static T BlankGetProperty { get; } = new T();
public static T BlankExpressionProperty => new T();