Gets the Section with the specified identifier.

Namespace: SharpAssembler.Core
Assembly: SharpAssembler Core (in SharpAssembler Core.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public Section this[
	string identifier
] { get; }
Visual Basic
Public ReadOnly Default Property Item ( _
	identifier As String _
) As Section
	Get
Visual C++
public:
property Section^ default[String^ identifier] {
	Section^ get (String^ identifier);
}

Parameters

identifier
Type: System..::..String
The identifier of the section.

Field Value

The Section; or nullNothingnullptra null reference (Nothing in Visual Basic) when not found.

See Also