C# Class gov.va.medora.mdo.PhoneNum

Afficher le fichier Open project: OSEHRA/mdo Class Usage Examples

Méthodes publiques

Méthode Description
Equals ( object obj ) : bool

Asserts all parts of phone number are equal

GetHashCode ( ) : int

Calls ToString().GetHashCode() to retrieve the hashcode of the string representation of a PhoneNum object

PhoneNum ( ) : System
PhoneNum ( string phoneNum ) : System
PhoneNum ( string areaCode, string exchange, string number ) : System
ToString ( ) : string

Area Code + Exchange + Number

Method Details

Equals() public méthode

Asserts all parts of phone number are equal
public Equals ( object obj ) : bool
obj object PhoneNum
Résultat bool

GetHashCode() public méthode

Calls ToString().GetHashCode() to retrieve the hashcode of the string representation of a PhoneNum object
public GetHashCode ( ) : int
Résultat int

PhoneNum() public méthode

public PhoneNum ( ) : System
Résultat System

PhoneNum() public méthode

public PhoneNum ( string phoneNum ) : System
phoneNum string
Résultat System

PhoneNum() public méthode

public PhoneNum ( string areaCode, string exchange, string number ) : System
areaCode string
exchange string
number string
Résultat System

ToString() public méthode

Area Code + Exchange + Number
public ToString ( ) : string
Résultat string