ZennoLab Assemblies Documentation
ToString Method (IGlobalVariable)
Example 
Returns a string that represents the current global variable.
Syntax
string ToString()

Return Value

Type: http://msdn.microsoft.com/en-us/library/system.string.aspx :
A string that represents the current global variable.
Example
The following example converts an IGlobalVariable object using the default ToString method.
// get global variable
IGlobalVariable gv = project.GlobalVariables["MyNamespace", "MyGlobalVariable"];
 
// convert global variable to string
string stringGlobalVariable = gv.ToString();
// get global variable
$gv = $project->GlobalVariables["MyNamespace", "MyGlobalVariable"];
 
// convert global variable to string
$stringGlobalVariable = $gv->ToString();
Requirements

Target Platforms: Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family, Windows Seven

See Also

Reference

IGlobalVariable Interface
IGlobalVariable Members
IGlobalVariables Interface
ILocalVariable Interface

Send Feedback