当前位置: 代码迷 >> .NET面试 >> C#的继承有关问题,大学课题
  详细解决方案

C#的继承有关问题,大学课题

热度:65   发布时间:2016-05-02 02:09:52.0
C#的继承问题,求助.....大学课题



求问.....

------解决方案--------------------
    class MyLabel : Label
    {
        private string title;

        public string Title
        {
            get { return title; }
        }
    }
------解决方案--------------------
up

引用:
class MyLabel : Label
    {
        private string title;

        public string Title
        {
            get { return title; }
        }
    }

------解决方案--------------------
class MyLabel:Label
    {
        private string title;

        public string Title
        {
            get { return title; }
        }
    }
  相关解决方案