C# 클래스 IniFile.KeyPair, IniFile

IniFile+KeyPair is used in keys map to keep value and comment for a single key
파일 보기 프로젝트 열기: Gris87/IniFile 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
comment string
key string
value string

공개 메소드들

메소드 설명
Equals ( object obj ) : bool

Determines whether the specified System.Object is equal to the current IniFile+KeyPair.

GetHashCode ( ) : int

Serves as a hash function for a IniFile+KeyPair object.

KeyPair ( string key, string value, string comment ) : System

Initializes a new instance of the IniFile+KeyPair class.

ToString ( ) : string

Returns a System.String that represents the current IniFile+KeyPair.

메소드 상세

Equals() 공개 메소드

Determines whether the specified System.Object is equal to the current IniFile+KeyPair.
public Equals ( object obj ) : bool
obj object The to compare with the current .
리턴 bool

GetHashCode() 공개 메소드

Serves as a hash function for a IniFile+KeyPair object.
public GetHashCode ( ) : int
리턴 int

KeyPair() 공개 메소드

Initializes a new instance of the IniFile+KeyPair class.
public KeyPair ( string key, string value, string comment ) : System
key string Key name.
value string Value of key.
comment string Comment of key.
리턴 System

ToString() 공개 메소드

Returns a System.String that represents the current IniFile+KeyPair.
public ToString ( ) : string
리턴 string

프로퍼티 상세

comment 공개적으로 프로퍼티

public string comment
리턴 string

key 공개적으로 프로퍼티

public string key
리턴 string

value 공개적으로 프로퍼티

public string value
리턴 string