代码重构-4 通用方法 用 static

只要没有用到 this.变量/方法 的,都可以用static

原代码:

private  string GetPeriodDesc(int lotteryPeriod)
{
return EnumHelper.GetEnumDesc(EnumHelperEx.ToEnum(lotteryPeriod, Lottery_PeriodStatusEnum.Day));
 
}

代替为

private static string GetPeriodDesc(int lotteryPeriod)
{
return EnumHelper.GetEnumDesc(EnumHelperEx.ToEnum(lotteryPeriod, Lottery_PeriodStatusEnum.Day));
 
}

原文地址:https://www.cnblogs.com/zhshlimi/p/5101801.html