开发者

What is the proper way to handle an array of one class in another class?

开发者 https://www.devze.com 2023-01-24 19:08 出处:网络
Here are two simple classes to illustrate my question: class Widget { private int _widgetID; public int WidgetID

Here are two simple classes to illustrate my question:

class Widget
{
    private int _widgetID;
    public int WidgetID
    {
        get { return _widgetID; }
        set { _widgetID = value; }
    }

    private int _categoryID;
    public int CategoryID
    {
        get { return _categoryID; }
        set { _categoryID = value; }
    }

    private string _widgetName;
    public string WidgetName
    {
        get { return _widgetName; }
        set { _widgetN开发者_JAVA技巧ame = value; }
    }
}

And them the second class:

class WidgetCategory
{
    private int _widgetCategoryID;
    public int WidgetCategoryID
    {
        get { return _widgetCategoryID; }
        set { _widgetCategoryID = value; }
    }

    private Widget[] _widgets;
    public Widget[] Widgets
    {
        get { return _widgets; }
        set { _widgets = value; }
    }

    private string _widgetCategoryName;
    public string WidgetCategoryName
    {
        get { return _widgetCategoryName; }
        set { _widgetCategoryName = value; }
    }
}

How would I handle this situation in the most efficient way?

Also, so you know, I will need to nest other classes the same way below the Widget class.


You should create a read-only property of type System.Collections.ObjectModel.Collection<Widget>.

  • Collection properties should be read only
  • Use Collection<T>
0

精彩评论

暂无评论...
验证码 换一张
取 消