Exemple #1
0
 private static int IntFromCell(ListViewCell cell)
 {
     return System.Convert.ToInt32(CellValue(cell));
 }
Exemple #2
0
 private static string CellValue(ListViewCell value)
 {
     return value == null ? "" : value.Text;
 }