C# 클래스 Fusion.Core.IniParser.Model.KeyData

Information associated to a key from an INI file. Includes both the value and the comments associated to the key.
상속: ICloneable
파일 보기 프로젝트 열기: demiurghg/FusionEngine 1 사용 예제들

공개 메소드들

메소드 설명
Clone ( ) : object

Creates a new object that is a copy of the current instance.

KeyData ( KeyData ori ) : System

Initializes a new instance of the KeyData class from a previous instance of KeyData.

Data is deeply copied

KeyData ( string keyName ) : System

Initializes a new instance of the KeyData class.

KeyData ( string keyName, string keyValue ) : System

Initializes a new instance of the KeyData class.

메소드 상세

Clone() 공개 메소드

Creates a new object that is a copy of the current instance.
public Clone ( ) : object
리턴 object

KeyData() 공개 메소드

Initializes a new instance of the KeyData class from a previous instance of KeyData.
Data is deeply copied
public KeyData ( KeyData ori ) : System
ori KeyData /// The instance of the class /// used to create the new instance. ///
리턴 System

KeyData() 공개 메소드

Initializes a new instance of the KeyData class.
public KeyData ( string keyName ) : System
keyName string
리턴 System

KeyData() 공개 메소드

Initializes a new instance of the KeyData class.
public KeyData ( string keyName, string keyValue ) : System
keyName string
keyValue string
리턴 System