ES2Reader.ReadDictionary

public Dictionary<TKey,TValue> ReadStack<TKey,TValue>(string 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

JS

Reading tags from an ES2Reader


public Dictionary<TKey,TValue> ReadDictionary<TKey,TValue>()

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

JS

Reading data sequentially from an ES2Reader