如何继承list对象从asp.net中的一个程序集到另一个程序集,并将设计器支持作为内部属性

本文关键字:程序集 另一个 支持 内部 属性 list 对象 继承 何继承 asp net | 更新日期: 2023-09-27 18:08:31

程序集中有一个列表集合。我如何从另一个程序集2中获得这个列表集合,因为该列表集合有几个内部列表集合。

提前感谢。

namespace Scripter.JavaScript.billng.Models
{
    public class class_1
    {
private List<MyObject> obj=null;
               [Browsable(true)]
               [NotifyParentProperty(true)]
               [Bindable(true)]
               [PersistenceMode(PersistenceMode.InnerProperty)]
               public List<MyObject> Cost
               {
                   get { return this.obj; }
                   set { this.obj= value; }
               }
    }
}

namespace Designer.JavaScript.billng.Models
{
    public class class_2
    {
//How can i access the List<MyObject> here. More over My object has several Collection in it. i need to inherits those collection too
}
}

命名空间scripter . javascript . billing . models在Assembly1,命名空间designer . javascript . billing . models在assembly2

如何继承list对象从asp.net中的一个程序集到另一个程序集,并将设计器支持作为内部属性

在Designer名称空间中,您需要通过使用完全限定名称或执行"using"来访问Scripter名称空间。

的例子:

//Fully qualified name:
Scripter.JavaScript.billng.Models.class_1.Cost = new List<MyObject>();
// with "using"
using Scripter.JavaScript.billng.Models;
...
class_1.Cost = new List<MyObject>();