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

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