コード例 #1
0
ファイル: TestedApplication.cs プロジェクト: byon/Aamch
 private static int IntFromCell(ListViewCell cell)
 {
     return System.Convert.ToInt32(CellValue(cell));
 }
コード例 #2
0
ファイル: TestedApplication.cs プロジェクト: byon/Aamch
 private static string CellValue(ListViewCell value)
 {
     return value == null ? "" : value.Text;
 }