摘要:
public class CommonMethod{ //静态实例调用非静态方法 public static CommonMethod instance = new CommonMethod(); public int GetID() { return 1; }}比如说调用GetID() 方法,不用实例化CommonMethod类,只要执行CommonMethod.instance.GetID()即可。 阅读全文
摘要:
/// <summary> /// 获取枚举变量值的 Description 属性 /// </summary> /// <param name="obj">枚举变量</param> /// <param name="isTop">是否改变为返回该类、枚举类型的头 Description 属性,而不是当前的属性或枚举变量值的 Description 属性</param> /// <returns>如果包含 Description 属性,则返回 Description 属性 阅读全文