Method | Description | |
---|---|---|
Add ( |
Performs the addition str + x or x + str.
|
|
Copy ( ) : |
Returns a copy of this string value instance.
|
|
Deserialize ( Byte content ) : |
Creates a new string value from the binary content.
|
|
Equals ( object obj ) : bool |
Is the given object equal to this.
|
|
GetHashCode ( ) : int |
Computes the hashcode of the value inside.
|
|
Perform ( |
If invoked like a function the function reacts like this.
|
|
Serialize ( ) : Byte[] |
Converts the given value into binary data.
|
|
StringValue ( ) : System |
Creates a new instance.
|
|
StringValue ( Char str ) : System |
Creates a new instance.
|
|
StringValue ( String value ) : System |
Creates a new instance and sets the value.
|
|
ToString ( |
Returns the string content of this instance.
|
|
this ( |
Gets the 1-based character of the string.
|
Method | Description | |
---|---|---|
RegisterOperators ( ) : void |
Registers the allowed operations.
|
public static Add ( |
||
left | An arbitrary value. | |
right | Another arbitrary value. | |
return |
public Deserialize ( Byte content ) : |
||
content | Byte | The data which contains the content. |
return |
public Equals ( object obj ) : bool | ||
obj | object | The compare object. |
return | bool |
public Perform ( |
||
context | The context of invocation. | |
argument | The argument(s) that have been given. | |
return |
public StringValue ( Char str ) : System | ||
str | Char | The given character array. |
return | System |
public StringValue ( String value ) : System | ||
value | String | The string where this value is based on. |
return | System |
public ToString ( |
||
context | The context of the invocation. | |
return | String |
public this ( |
||
index | The 1-based character (1 == first character) index. | |
return | Char |