我正在制作一个Model
类,它应该像这样:
public class ModelSection
{
public int SectionID { get; set; }
public string SectionName { get; set; }
public string SectionReportName { get; set; }
}
我正在像这样创建它的一个实例...
ModelSection ms = new ModelSection();
ms.SectionReportName = subreports[0].ToString();
ms.SectionID = SectionID1;
ms.SectionName = SectionName1;
ModelSection ms1 = new ModelSection();
ms1.SectionReportName = subreports[1].ToString();
ms1.SectionID = SectionID2;
ms1.SectionName = SectionName2;
ModelSection ms2 = new ModelSection();
ms2.SectionReportName = subreports[2].ToString();
ms2.SectionID = SectionID3;
ms2.SectionName = SectionName3;
有一个更好的方法吗?
最佳答案
您可以尝试这样做
ModelSection ms = new ModelSection {
SectionReportName = subreports[0].ToString(),
SectionID = SectionID1,
SectionName = SectionName1
};
参考:https://msdn.microsoft.com/en-us/library/bb384062.aspx?f=255&MSPPError=-2147217396
关于c# - 在C#中创建实体的最佳方法,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39147827/