public static int Main()
    {
        ToFromIntPtrTest t = new ToFromIntPtrTest();

        if (t.RunTests())
        {
            Console.WriteLine("ToFromIntPtrTest Passed!");
            return(100);
        }

        Console.WriteLine("ToFromIntPtrTest Failed!");
        return(1);
    }
Exemple #2
0
    public static int Main()
    {
        ToFromIntPtrTest t = new ToFromIntPtrTest();

        if (t.RunTests())
        {
            Console.WriteLine("ToFromIntPtrTest Passed!");
            return 100;
        }

        Console.WriteLine("ToFromIntPtrTest Failed!");
        return 1;
    }