예제 #1
0
 private static void ConditionalChaining(ChainInt x, int y, int z)
 {
     bool result = x < y < z;
       Console.WriteLine(string.Format("{0} < {1} < {2}: {3}", x, y, z, result));
 }
예제 #2
0
        private static void ConditionalChaining(ChainInt x, int y, int z)
        {
            bool result = x < y < z;

            Console.WriteLine(string.Format("{0} < {1} < {2}: {3}", x, y, z, result));
        }