ES2Reader.ReadDictionary
Read Dictionary with Tag
Parameters
TKey/TValue | The type of the key/value in the Dictionary we want to load. Must be on the Supported Types list. |
tag |
The tag which we want to load. |
Returns
Dictionary<TKey TValue> | Our loaded data |
Description
Reads the collection of type T from the ES2Reader with the given tag.
C#
Reading tags from an ES2Reader
1 2 3 4 5 6 7 |
using(ES2Reader reader = ES2Reader.Create("myFile.txt")) { // Read data from the file in any order. reader.Read<Transform>("transformTag", this.transform); // Self-assigning Read this.name = reader.Read<string>("nameTag"); Dictionary<string,int> myInts = reader.ReadDictionary<string,int>("intsTag"); } |
JS
Reading tags from an ES2Reader
1 2 3 4 5 6 7 |
var reader : ES2Reader = ES2Reader.Create("myFile.txt")) // Read data from the file in any order. reader.Read.<Transform>("transformTag", this.transform); // Self-assigning Read. this.name = reader.Read.<String>("nameTag"); var myInts = reader.ReadDictionary.<String,int>("intsTag"); // Remember to dispose when we're finished. reader.Dispose(); |
Sequential Read Dictionary
Parameters
TKey/TValue | The type of the key/value in the collection we want to load. Must be on the Supported Types list. |
Returns
Dictionary<TKey TValue> | Our loaded data |
Description
Reads the collection of type T from the ES2Reader. The data must have been saved sequentially using ES2Writer.
C#
Reading data sequentially from an ES2Reader
1 2 3 4 5 6 7 |
using(ES2Reader reader = ES2Reader.Create("myFile.txt")) { // Read the data from the file in the same order as we saved it. this.name = reader.Read<string>(); reader.Read<Transform>(this.transform); Dictionary<string,int> myInts = reader.ReadDictionary<string,int>(); } |
JS
Reading data sequentially from an ES2Reader
1 2 3 4 5 6 7 |
var reader : ES2Reader = ES2Reader.Create("myFile.txt")) // Read the data from the file in the same order as we saved it. this.name = reader.Read.<String>(); reader.Read.<Transform>(this.transform); var myInts = reader.ReadDictionary.<String,int>(); // Remember to dispose when we're finished. reader.Dispose(); |