using System; using System.Collections.Generic; using System.Text; namespace Zhaizj.Framework { /// /// 系统常用对象的快捷方式,比如 SysPath(系统路径) /// public class sys { /// /// 系统路径 /// public static SysPath Path { get { return SysPath.Instance; } } } }