C# 클래스 gov.va.medora.mdo.PhoneNum

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

공개 메소드들

메소드 설명
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

메소드 상세

Equals() 공개 메소드

Asserts all parts of phone number are equal
public Equals ( object obj ) : bool
obj object PhoneNum
리턴 bool

GetHashCode() 공개 메소드

Calls ToString().GetHashCode() to retrieve the hashcode of the string representation of a PhoneNum object
public GetHashCode ( ) : int
리턴 int

PhoneNum() 공개 메소드

public PhoneNum ( ) : System
리턴 System

PhoneNum() 공개 메소드

public PhoneNum ( string phoneNum ) : System
phoneNum string
리턴 System

PhoneNum() 공개 메소드

public PhoneNum ( string areaCode, string exchange, string number ) : System
areaCode string
exchange string
number string
리턴 System

ToString() 공개 메소드

Area Code + Exchange + Number
public ToString ( ) : string
리턴 string