Пример #1
0
 public static string PostCode(this System.Random random) =>
 $"{new string(random.Chars(2))}{random.Digits(2)} {random.Digit()}{new string(random.Chars(2))}"
 .ToUpperInvariant();
Пример #2
0
 public static string MobileNumber(this System.Random random)
 {
     return($"07{random.Digits(9)}");
 }