C# Class INI.INIFile

Create a New INI file to store or load data
ファイルを表示 Open project: henryxrl/SimpleEpub2 Class Usage Examples

Public Properties

Property Type Description
path String

Public Methods

Method Description
INIFile ( String INIPath ) : System

INIFile Constructor.

INIReadValue ( String Section, String Key ) : String

Read Data Value From the INI File

INIWriteValue ( String Section, String Key, String Value ) : void

Write Data to the INI File

Private Methods

Method Description
GetPrivateProfileString ( String section, String key, String def, StringBuilder retVal, Int32 size, String filePath ) : Int32
WritePrivateProfileString ( String section, String key, String val, String filePath ) : Int32

Method Details

INIFile() public method

INIFile Constructor.
public INIFile ( String INIPath ) : System
INIPath String
return System

INIReadValue() public method

Read Data Value From the INI File
public INIReadValue ( String Section, String Key ) : String
Section String
Key String
return String

INIWriteValue() public method

Write Data to the INI File
public INIWriteValue ( String Section, String Key, String Value ) : void
Section String
Key String
Value String
return void

Property Details

path public_oe property

public String path
return String