BankCardNumber.Tests.CardNumberValidator.IsValid C# (CSharp) Method

IsValid() public static method

public static IsValid ( string number ) : bool
number string
return bool
        public static bool IsValid(string number)
        {
            throw new NotImplementedException();
        }

Usage Example

 public void NullValueThrowsArgumentNullException()
 {
     CardNumberValidator.IsValid(null);
 }
All Usage Examples Of BankCardNumber.Tests.CardNumberValidator::IsValid
CardNumberValidator