[Serializable]
    [DesignerCategory("code")]
    [DebuggerStepThrough]
    [XmlType(Namespace = "http://tempuri.org/")]
    [GeneratedCode("System.Xml", "2.0.50727.4927")]
    public class Fct_User[code=C#]
    {
        public Fct_User();        public string Answer { get; set; }
        [XmlElement(IsNullable = true)]
        public int? BBSID { get; set; }
        public string BBSName { get; set; }
        public string CompanyAddress { get; set; }
        [XmlElement(IsNullable = true)]
        public int? CompanyAddress_IsOpen { get; set; }
        [XmlElement(IsNullable = true)]
        public int? CompanyCity { get; set; }
        [XmlElement(IsNullable = true)]
[/code]
这是一个什么类啊。能不能被本地的继承?求讨论

解决方案 »

  1.   

    public 没有 密封当然可以继承
    这个是用来和xml互相转换的类。Serializable,XmlElement等都是xml序列号的标记
      

  2.   

    Xml序列化,你到MSDN上面查查,有详细的解释!
      

  3.   

    一点也不特殊,某种代码生成器从一个XML架构或者文档自动生成的代码...就是个实体类,没有必要继承...