- 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; }
}
fr0mrus 12.04.2011 09:06 # +1
absolut 12.04.2011 09:20 # +1
MAGnit 12.04.2011 09:32 # 0
Lure Of Chaos 12.04.2011 13:24 # +3
Lure Of Chaos 12.04.2011 17:11 # +3
absolut 12.04.2011 22:40 # +1
ErmineMD 13.04.2011 00:31 # 0
RowForReportBookRecordIssue row = new RowForReportBookRecordIssue();
row.Colum1 = "value1";
row.Colum2 = "value2";
Или даже так:
var row = new RowForReportBookRecordIssue();
row.Colum1 = "value1";
row.Colum2 = "value2";
Или я не понял подпись к коду?
fr0mrus 13.04.2011 10:26 # 0
guest 19.04.2011 18:05 # 0