Interface ICanSetVariables
Enables setting and getting variables via a key indexer.
Namespace: EyeAuras.Shared.Model
Assembly: EyeAuras.Shared.Metadata.dll
Syntax
public interface ICanSetVariables
Examples
Setting a variable named "count":
variableSetter["count"] = 10;
Getting the value of "count":
var count = (int)variableSetter["count"];
Properties
Name | Description |
---|---|
this[string] | Gets or sets the variable associated with the specified key. |