看这段代码:  public static string Test2()
        {            ApplicationClass appc = new ApplicationClass();
            appc.Visible = true;            var t = appc.Workbooks.Open(@"E:\Desktop\T.xls", null, null, null, null, null, null, null, null, null, null, null,
                                            null, null, null);
            string ret = "";
            foreach (Worksheet ws in t.Worksheets)
            {
                ret += ws.Name + "|";
            }
            return ret;
        }这个函数返回以:|隔开的所有sheets名称。