Esempio n. 1
0
        static void Main4(string[] args)
        {
            TesClassA t1 = new TesClassA();

            t1.Name = "aabb";
            t1.Out("1000", "1001");
        }
Esempio n. 2
0
        /*
         * void testsub()
         * {
         *  整数 I = new 整数(9);
         *  I = Calculater.SUB(I, new 整数(8888));
         * }*/

        void testCall()
        {
            TesClassA t1 = new TesClassA();

            t1.Name = "testCall";
            t1.Out("很好", "结束");
        }
Esempio n. 3
0
        static void Main3(string[] args)
        {
            TesClassA t1  = new TesClassA();
            string    str = "aaaa" + t1;

            //int a = 100 + 8;
            Console.ReadKey();
        }
Esempio n. 4
0
 public void setSetProperty(TesClassA t1, string value)
 {
     t1.Value = value;
 }
Esempio n. 5
0
        /*
         * static void testPrint(string str)
         * {
         *  文本 wb = new 文本(str);
         *  控制台.打印(wb);
         * }
         *
         * static void testRead()
         * {
         *  文本 T = 控制台.读取();
         *  控制台.打印(T);
         * }*/

        public string testGetProperty(TesClassA t1)
        {
            return(t1.Name);
        }
Esempio n. 6
0
 void testCallStatic()
 {
     TesClassA.Wr("aaa", "bbb");
 }
Esempio n. 7
0
 object TEST_ASSING_ARG_DOT(TesClassA t1, string c)
 {
     t1.Name = "TEST_" + c;
     return(t1);
 }