Beispiel #1
0
        public static void Main()
        {
            int        num = 65;
            string     msg = "A String";
            Coordinate c   = new Coordinate(21.0, 68.0);

            Utils.Display(num);
            Utils.Display(msg);
            Utils.Display(c);
        }
Beispiel #2
0
        public static void Main()
        {
            int        num  = 90;
            string     msg  = "Просто строка";
            Coordinate temp = new Coordinate(21.0, 68.0);

            Utils.Display(num);
            Utils.Display(msg);
            Utils.Display(temp);
        }
Beispiel #3
0
        public static void Main()
        {
            int        intVal = 5;
            string     strVal = "five";
            Coordinate cVal   = new Coordinate(66.0, 30.0);

            Utils.Display(intVal);
            Utils.Display(strVal);
            Utils.Display(cVal);
            Console.ReadKey();
        }
Beispiel #4
0
        public static void Main()
        {
            int        aa = 65;
            string     bb = "A String";
            Coordinate c  = new Coordinate(21.0, 68.0);

            Utils.Display(aa);
            Utils.Display(bb);
            Utils.Display(c);
            Console.Read();
        }