C# 클래스 Adf.Business.ValueObject.AccountNumber

파일 보기 프로젝트 열기: NLADP/ADF 1 사용 예제들

공개 메소드들

메소드 설명
AccountNumber ( string newvalue ) : System

Initializes a new instance of AccountNumber with the supplied value.

If the supplied value could not be validated, an exception is thrown.

GetHashCode ( ) : int

Returns the hash code for this instance.

New ( ) : AccountNumber

Creates a new empty AccountNumber object.

New ( string value ) : AccountNumber

Creates a new AccountNumber object using the specified value.

ToString ( ) : string

Returns the fully qualified type name of this instance.

TryParse ( string s, AccountNumber &result ) : bool

Tries to parse the supplied string into the supplied AccountNumber object.

TryParse ( string s, IFormatProvider provider, AccountNumber &result ) : bool
operator ( ) : bool

Returns the inequality of two AccountNumber objects.

비공개 메소드들

메소드 설명
CompareTo ( object obj ) : int
ElfProef ( string rekeningNr ) : bool

Indicates whether the supplied value is a valid AccountNumber or not.

Equals ( object obj ) : bool
IsValidAccountNumber ( string newvalue ) : bool

Checks whether the supplied value is a valid AccountNumber or not.

메소드 상세

AccountNumber() 공개 메소드

Initializes a new instance of AccountNumber with the supplied value.
If the supplied value could not be validated, an exception is thrown.
public AccountNumber ( string newvalue ) : System
newvalue string The bank account number to use.
리턴 System

GetHashCode() 공개 메소드

Returns the hash code for this instance.
public GetHashCode ( ) : int
리턴 int

New() 공개 정적인 메소드

Creates a new empty AccountNumber object.
public static New ( ) : AccountNumber
리턴 AccountNumber

New() 공개 정적인 메소드

Creates a new AccountNumber object using the specified value.
public static New ( string value ) : AccountNumber
value string The supplied value.
리턴 AccountNumber

ToString() 공개 메소드

Returns the fully qualified type name of this instance.
public ToString ( ) : string
리턴 string

TryParse() 공개 정적인 메소드

Tries to parse the supplied string into the supplied AccountNumber object.
public static TryParse ( string s, AccountNumber &result ) : bool
s string The string to parse.
result AccountNumber The object.
리턴 bool

TryParse() 공개 정적인 메소드

public static TryParse ( string s, IFormatProvider provider, AccountNumber &result ) : bool
s string
provider IFormatProvider
result AccountNumber
리턴 bool

operator() 공개 정적인 메소드

Returns the inequality of two AccountNumber objects.
public static operator ( ) : bool
리턴 bool