- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
public struct RowForReportBookRecordIssue
{
public string Column1 { get; set; }
public string Column2 { get; set; }
public string Column3 { get; set; }
public string Column4 { get; set; }
public string Column5 { get; set; }
public string Column6 { get; set; }
public string Column7 { get; set; }
public string Column8 { get; set; }
public string Column9 { get; set; }
public string Column10 { get; set; }
}
RowForReportBookRecordIssue row = new RowForReportBookRecordIssue();
row.Colum1 = "value1";
row.Colum2 = "value2";
Или даже так:
var row = new RowForReportBookRecordIssue();
row.Colum1 = "value1";
row.Colum2 = "value2";
Или я не понял подпись к коду?