namespace Electric.Core { /// /// 自定义检查类 /// public static class Check { public static T NotNull(T value, string parameterName) { if (value == null) { throw new ArgumentNullException(parameterName); } return value; } } }