Пример #1
0
        public static void run()
        {
            var        a      = new WithDisplayString();
            var        b      = new WithProxy();
            var        c      = new DebuggerDisplayMethodTest();
            List <int> myList = new List <int> {
                1, 2, 3, 4
            };
            var listToTestToList = System.Linq.Enumerable.Range(1, 11);

            Dictionary <string, string> openWith = new Dictionary <string, string>();

            openWith.Add("txt", "notepad");
            openWith.Add("bmp", "paint");
            openWith.Add("dib", "paint");
            var person1 = new Person {
                FirstName = "Anton", SurName = "Mueller", Age = 44
            };
            var person2 = new Person {
                FirstName = "Lisa", SurName = "Müller", Age = 41
            };

            Console.WriteLine("break here");

            Console.WriteLine("break here");
        }
Пример #2
0
        public static void run()
        {
            var a = new WithDisplayString();
            var b = new WithProxy();
            var c = new DebuggerDisplayMethodTest();

            Console.WriteLine(a);
            Console.WriteLine(b);
            Console.WriteLine(c);
        }
Пример #3
0
        public static void run()
        {
            var        a      = new WithDisplayString();
            var        b      = new WithProxy();
            var        c      = new DebuggerDisplayMethodTest();
            List <int> myList = new List <int> {
                1, 2, 3, 4
            };
            var listToTestToList = System.Linq.Enumerable.Range(1, 11);

            Console.WriteLine("break here");
        }
Пример #4
0
        public static void run()
        {
            var        a      = new WithDisplayString();
            var        b      = new WithProxy();
            var        c      = new DebuggerDisplayMethodTest();
            List <int> myList = new List <int> {
                1, 2, 3, 4
            };
            var listToTestToList = System.Linq.Enumerable.Range(1, 11);

            Dictionary <string, string> openWith = new Dictionary <string, string>();

            openWith.Add("txt", "notepad");
            openWith.Add("bmp", "paint");
            openWith.Add("dib", "paint");
            Console.WriteLine("break here");

            Console.WriteLine("break here");
        }
Пример #5
0
 public TheProxy(WithProxy wp)
 {
     this.wp = wp;
 }