using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace CommonLibrary { /// /// 所有的数据资源中心 /// public class Resource { /// /// 字符串资源中心 /// public class StringResouce { public static string SoftName { get; } = "你的软件系统"; public static string SoftCopyRight { get; } = "版权归属人"; } } }