/// <summary> /// Opens up a name for use /// </summary> public void Clear(string s) { if (variables.Exists(s)) { variables.Delete(s); } else if (functions.Exists(s)) { functions.Delete(s); } else if (namespaces.Exists(s)) { namespaces.Delete(s); } }