using System.Collections.Generic;
public static void Main()
_bigList = new Lazy<List<int>>( () => {
var list = new List<int>();
for(var i = 0; i < 30; i ++)
Console.WriteLine(BigList.Any());
Console.WriteLine(BigList.Count);
public static List<int> BigList => _bigList.Value;
private static Lazy<List<int>> _bigList;