public static void Main()
public class A<T> where T : class {
private static Lazy<int> lazyClient = new Lazy<int>(InitClient);
protected static int client => lazyClient.Value;
Console.WriteLine("Hello World A");
Console.WriteLine("Run Run");
private static int InitClient()
Console.WriteLine("Init Client 3");
Console.WriteLine("Hello World B");
Console.WriteLine("Walk" + client);