C# Class 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.
Inheritance: ICloneable
Mostra file Open project: demiurghg/FusionEngine Class Usage Examples

Public Methods

Method Description
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.

Method Details

Clone() public method

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

KeyData() public method

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. ///
return System

KeyData() public method

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

KeyData() public method

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