// 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);
        }
 public void TestingCalssWithReference(ClassWithReferenceToOneIntAndOneInt cl)
 {
 }