using System;
public class Program
{
public static void Main()
var someLazy = new Lazy<bool>(true);
someLazy.Value.Dump();
}