Example #1
0
    static void Main(string[] args)
    {
        SomeGlobalClass SGC = new SomeGlobalClass();
        BigData         d   = new BigData();
        BigData         d2  = new BigData();

        d.DescribeAll();
        d2.DescribeAll();
        d  = null;
        d2 = null;

        GC.Collect();

        Console.ReadKey();
    }
Example #2
0
 public SomeGlobalClass()
 {
     Instance = this;
 }