Initializes a new instance of the DeclareString class declaring the specified string
with UTF-8 encoding.
Namespace: SharpAssembler.Core.InstructionsAssembly: SharpAssembler Core (in SharpAssembler Core.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
| C# |
|---|
public DeclareString( string data ) |
| Visual Basic |
|---|
Public Sub New ( _ data As String _ ) |
| Visual C++ |
|---|
public: DeclareString( String^ data ) |
Parameters
- data
- Type: System..::..String
The data.
Exceptions
| Exception | Condition |
|---|---|
| System..::..ArgumentNullException | data == null |
Contracts
| Requires | ||
|---|---|---|
data != null
|