예제 #1
0
 public static void CheckTernaryStructWithStringTest(bool useInterpreter)
 {
     bool[] array1 = new bool[] { false, true };
     Sc[]   array2 = new Sc[] { default(Sc), new Sc(), new Sc(null) };
     for (int i = 0; i < array1.Length; i++)
     {
         for (int j = 0; j < array2.Length; j++)
         {
             for (int k = 0; k < array2.Length; k++)
             {
                 VerifyStructWithString(array1[i], array2[j], array2[k], useInterpreter);
             }
         }
     }
 }