Пример #1
0
        public static void basic_typedef_test()
        {
            test.ITesting obj   = new test.Testing();
            test.MyInt    input = 1900;
            test.MyInt    receiver;

            int ret = obj.BypassTypedef(input, out receiver);

            Test.AssertEquals((test.MyInt)ret, input);
            Test.AssertEquals(receiver, input);
        }