Gets the IniFileSection with a given name.

Namespace: System.Extensions.IO
Assembly: System.Extensions (in System.Extensions.dll) Version: 0.0.0.5 (0.0.0.5)

Syntax

C#
public IniFileSection this[
	string name
] { get; }
Visual Basic
Public ReadOnly Default Property Item ( 
	name As String
) As IniFileSection
	Get
Visual C++
public:
property IniFileSection^ default[String^ name] {
	IniFileSection^ get (String^ name);
}
F#
member Item : IniFileSection with get

Parameters

name
Type: System..::..String
The name of the section to return.

Property Value

Type: IniFileSection

See Also