C# Class NSoft.NFramework.Nini.Ini.IniSection

显示文件 Open project: debop/NFramework Class Usage Examples

Public Methods

Method Description
Contains ( string key ) : bool
GetItem ( int index ) : IniItem
GetKeys ( ) : string[]
GetValue ( string key ) : string
IniSection ( string name, string comment = null ) : System.Collections
Remove ( string key ) : void
Set ( ) : void
Set ( string comment ) : void
Set ( string key, string value, string comment = null ) : void

Method Details

Contains() public method

public Contains ( string key ) : bool
key string
return bool

GetItem() public method

public GetItem ( int index ) : IniItem
index int
return IniItem

GetKeys() public method

public GetKeys ( ) : string[]
return string[]

GetValue() public method

public GetValue ( string key ) : string
key string
return string

IniSection() public method

public IniSection ( string name, string comment = null ) : System.Collections
name string
comment string
return System.Collections

Remove() public method

public Remove ( string key ) : void
key string
return void

Set() public method

public Set ( ) : void
return void

Set() public method

public Set ( string comment ) : void
comment string
return void

Set() public method

public Set ( string key, string value, string comment = null ) : void
key string
value string
comment string
return void