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
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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