예제 #1
0
        public bool Read()
        {
            if (_type == AdomdType.AnalysisServices)
            {
                return(_obj.Read());
            }
            else
            {
                bool f() => _objExcel.Read();

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