Class VariableArray<T>
Inheritance
VariableArray<T>
Assembly: Algorand.dll
Syntax
public class VariableArray<T> : WireType where T : WireType
Type Parameters
Constructors
|
Edit this page
View Source
VariableArray()
Declaration
|
Edit this page
View Source
VariableArray(string)
Declaration
public VariableArray(string elementSpec)
Parameters
| Type |
Name |
Description |
| string |
elementSpec |
|
Properties
|
Edit this page
View Source
ElementSpec
Declaration
public string ElementSpec { get; }
Property Value
|
Edit this page
View Source
IsDynamic
Declaration
public override bool IsDynamic { get; }
Property Value
Overrides
|
Edit this page
View Source
Value
Declaration
public List<T> Value { get; set; }
Property Value
Methods
|
Edit this page
View Source
Decode(byte[])
Declaration
public override uint Decode(byte[] data)
Parameters
| Type |
Name |
Description |
| byte[] |
data |
|
Returns
Overrides
|
Edit this page
View Source
Encode()
Declaration
public override byte[] Encode()
Returns
Overrides
|
Edit this page
View Source
From(object)
Create instance of the object from the value
Declaration
public override bool From(object instance)
Parameters
| Type |
Name |
Description |
| object |
instance |
C# variable
|
Returns
Overrides
|
Edit this page
View Source
GetDescription()
Declaration
public override string GetDescription()
Returns
Overrides
|
Edit this page
View Source
ToByteArray()
Declaration
public byte[] ToByteArray()
Returns
|
Edit this page
View Source
ToStringArray()
Declaration
public string[] ToStringArray()
Returns
|
Edit this page
View Source
ToValue()
Converts WireType to c# value
Declaration
public override object ToValue()
Returns
Overrides