Esempio n. 1
0
 public object this[string name]
 {
     get
     {
         var index = CommonFuncs.GetExcelColumnIndex(name);
         return(this[index]);
     }
     set
     {
         var index = CommonFuncs.GetExcelColumnIndex(name);
         this[index] = value;
     }
 }