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);
        }