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