GlobalVariablesManager
Returns variables' count in global storage SYNTAX public static int Count () RETURN int EXAMPLE using System;
using System.Text;
using...
Mon, Apr 30, 2018 at 11:48 AM
Check if variable with specified name exists in global storage SYNTAX public static bool Exists (string name) PARAMETERS name — string V...
Mon, Apr 30, 2018 at 11:55 AM
Saves all serializable variables to disk SYNTAX public static void Flush () RETURN void EXAMPLE using System;
using System.Text;
using ...
Mon, Apr 30, 2018 at 11:59 AM
Returns all global variables as list SYNTAX public static List<GlobalVariable> GetGlobalVariablesList () RETURN List Collection of glo...
Mon, Apr 30, 2018 at 12:04 PM
Returns variable value by name SYNTAX public static object GetValue (string name) PARAMETERS name — string Variable name RETURN ...
Mon, Apr 30, 2018 at 12:09 PM
Removes specified variable from global storage SYNTAX public static bool Remove (string name) PARAMETERS name — string Variable name ...
Mon, Apr 30, 2018 at 12:14 PM
Removes all variables from global storage SYNTAX public static void RemoveAll () RETURN void EXAMPLE using System;
using System.Text;
u...
Mon, Apr 30, 2018 at 12:21 PM
Sets variable value to a global storage SYNTAX public static void SetValue (string name,object value,VariableLifetime lifetime) PARAMETERS name...
Mon, Apr 30, 2018 at 12:29 PM
Performs a variable assigning from a global storage if such name exists in a scope SYNTAX public static bool TryGetValue (string name,ref Object obj...
Mon, Apr 30, 2018 at 12:36 PM