using System; class Test { static int Main() { Lazy l = new Lazy(() => 100); Console.WriteLine(l.Value); return l.Value; } }