Esempio n. 1
0
            public static bool testMethod()
            {
                IndexersTestClass49_Sub mc = new IndexersTestClass49_Sub();

                mc[1, 2, 3] = 0;
                if (mc[1, 2, 3] == 6)
                {
                    return(true);
                }
                else
                {
                    return(false);
                }
            }
Esempio n. 2
0
 public static bool testMethod()
 {
     IndexersTestClass49_Sub mc = new IndexersTestClass49_Sub();
     mc[1, 2, 3] = 0;
     if (mc[1, 2, 3] == 6)
     {
         return true;
     }
     else
     {
         return false;
     }
 }