示例#1
0
        // Class with a reference to another other class
        public static ClassWithReferenceToOneIntAndOneInt[] clas()
        {
            ClassWithReferenceToOneIntAndOneInt[] returnValue = new ClassWithReferenceToOneIntAndOneInt[5];
            OneInt[] oneInts   = OneIntValues();
            int[]    intValues = IntValues;
            for (int i = 0; i < 5; i++)
            {
                returnValue[i] = new ClassWithReferenceToOneIntAndOneInt(oneInts[i], intValues[i]);
            }

            return(returnValue);
        }
示例#2
0
 public void TestingCalssWithReference(ClassWithReferenceToOneIntAndOneInt cl)
 {
 }