Esempio n. 1
0
        public long GetInt64(int i)
        {
            if (_type == AdomdType.AnalysisServices)
            {
                return(_obj.GetInt64(i));
            }
            else
            {
                long f() => _objExcel.GetInt64(i);

                return(f());
            }
        }
Esempio n. 2
0
 public long GetInt64(int i)
 {
     if (_type == AdomdType.AnalysisServices)
     {
         return(_obj.GetInt64(i));
     }
     else
     {
         ExcelAdoMdConnections.ReturnDelegate <long> f = delegate
         {
             return(_objExcel.GetInt64(i));
         };
         return(f());
     }
 }