Retrieve the list of all Room Variables.
An associative array containing Room Variables' values, where the key is the variable name
Version:
SmartFoxServer Basic / Pro
SmartFoxServer Basic / Pro
Hashtable roomVars = room.GetVariables(); foreach (string v in roomVars.Keys) Trace.WriteLine("Name:" + v + " | Value:" + room.GetVariable(v));