public XSheetCell this[string column] { get { XSheetCell cell = null; this.mCells.TryGetValue(column, out cell); return(cell); } set { this.mCells[column] = value; } }
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))); }