예제 #1
0
        public short GetInt16(int i)
        {
            if (_type == AdomdType.AnalysisServices)
            {
                return(_obj.GetInt16(i));
            }
            else
            {
                short f() => _objExcel.GetInt16(i);

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