예제 #1
0
 public static string FailIfToLong(
     [CanBeNull] this string value,
     int maxLength,
     [NotNull] string name)
 {
     Fail.IfToLong(value, maxLength, name);
     return(value);
 }