With this code you can get all variables for specific namespace:
IEnumerable<IGlobalVariable> variables = project.GlobalVariables["
[email protected]"];
foreach(IGlobalVariable vrbl in variables)
{
project.SendInfoToLog(vrbl.Name + ": " + vrbl.Value);
}
And with this one you can get all...