public int GetInt32(int i)
        {
            if (_type == AdomdType.AnalysisServices)
            {
                return(_obj.GetInt32(i));
            }
            else
            {
                int f() => _objExcel.GetInt32(i);

                return(f());
            }
        }
Exemple #2
0
 public int GetInt32(int i)
 {
     if (_type == AdomdType.AnalysisServices)
     {
         return(_obj.GetInt32(i));
     }
     else
     {
         ExcelAdoMdConnections.ReturnDelegate <int> f = delegate
         {
             return(_objExcel.GetInt32(i));
         };
         return(f());
     }
 }