예제 #1
0
    public static int test_4_vtype()
    {
        GcFooStruct s = new GcFooStruct(1, 2, 3);

        GC.Collect(1);

        return (int)s.o1 + (int)s.o2;
    }
예제 #2
0
파일: gc-test.cs 프로젝트: zer09/Cosmos
    public static int test_4_vtype()
    {
        GcFooStruct s = new GcFooStruct(1, 2, 3);

        GC.Collect(1);

        return((int)s.o1 + (int)s.o2);
    }