Exemplo n.º 1
0
        public byte GetByte(int i)
        {
            if (_type == AdomdType.AnalysisServices)
            {
                return(_obj.GetByte(i));
            }
            else
            {
                byte f() => _objExcel.GetByte(i);

                return(f());
            }
        }
Exemplo n.º 2
0
 public byte GetByte(int i)
 {
     if (_type == AdomdType.AnalysisServices)
     {
         return(_obj.GetByte(i));
     }
     else
     {
         ExcelAdoMdConnections.ReturnDelegate <byte> f = delegate
         {
             return(_objExcel.GetByte(i));
         };
         return(f());
     }
 }