摘要:
继承: using System; class Parent { public void Msg() { Console.WriteLine("Parent"); } } class Child : Parent { } class Program { static void Main() { Parent ObjParent = new Paren... 阅读全文
posted @ 2009-01-02 16:45
万一
阅读(2467)
评论(1)
推荐(0)
摘要:
所有类默认继承于 System.Object(或叫 Object): using System; class MyClass1 { } class MyClass2 : Object { } class MyClass3 : System.Object { } class Program { static void Main() { MyClass1... 阅读全文
posted @ 2009-01-02 14:49
万一
阅读(2790)
评论(0)
推荐(0)
浙公网安备 33010602011771号