Gets the identifier of this section.

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

Syntax

C#
public string Identifier { get; }
Visual Basic
Public ReadOnly Property Identifier As String
	Get
Visual C++
public:
virtual property String^ Identifier {
	String^ get () sealed;
}

Field Value

An identifier.

Implements

IIdentifiable..::..Identifier

Remarks

Not all possible characters are valid in a section's identifier in all implementations and file formats. It is recommended that only the characters a-z, A-Z and 0-9 are used for the identifier, and the identifier does not start with a digit. However, it may start with a dot. Use the AddNewSection(String, SectionType) method to ensure that the identifier is valid for the file format.

Some identifiers have a special meaning in certain implementations and file formats.

Contracts

Get

Ensures
Contract.Result<string>() != null
Contract.Result<string>() != null
Inherited From: IIdentifiable

See Also