Esempio n. 1
0
 public XSheetCell this[string column]
 {
     get
     {
         XSheetCell cell = null;
         this.mCells.TryGetValue(column, out cell);
         return(cell);
     }
     set
     {
         this.mCells[column] = value;
     }
 }
Esempio n. 2
0
 private static Exception ParseException <T>(Exception e, XSheetCell c)
 {
     return(new Exception(string.Format("{0}\nA '{1}' value is expected but the cell value is '{2}'", e.Message, typeof(T).Name, c.mValue)));
 }