Adf.Business.ValueObject.Sofinummer.IsValidSofinummer C# (CSharp) Метод

IsValidSofinummer() приватный статический Метод

Checks whether the supplied value is a valid Sofinummer or not.
private static IsValidSofinummer ( string newvalue ) : bool
newvalue string The value to check.
Результат bool
        private static bool IsValidSofinummer(string newvalue)
        {
            return /*Expression.IsMatch(newvalue) &&*/ ElfProefSofi(newvalue);
        }