标签: c# asp.net asp.net-mvc
例如,在mvc应用中的此模型:
public class NewForm { public int Id { get; set; } public string Name { get; set; } public string Description { get; set; } }
模型必须包含一个字段列表,其中的字段由其自己的子类表示。这是怎么理解的:该类是在类内部还是单独进行处理,然后在主类中编写该类的实例或什么?