SharedStateStore class

Thread‑safe, case‑insensitive global key/value store for reference‑type objects.

public static class SharedStateStore

Public Members

name description
static Get(…) Untyped fetch; null if absent.
static KeySnapshot() Snapshot of keys only—handy for quick listings.
static Set(…) Add or overwrite a value (reference‑types only).
static Snapshot() Snapshot of all current variables (shallow copy).
static TryGet<T>(…) Strongly‑typed fetch. Returns false if the key is missing or the stored value can’t be cast to T.

See Also