VarGet Function |
Namespace: XSharp.RT
[NeedsAccessToLocalsAttribute(FALSE)] FUNCTION VarGet( cVarName AS STRING ) AS USUAL
[NeedsAccessToLocalsAttribute(false)] public static Usual VarGet( string cVarName )
Tip |
---|
Dynamic memory variables (PUBLIC, PRIVATE, PARAMETERS) are supported in the X# language and runtime for compatibility only. In most cases the type can and should be replaced with lexically scoped variables, such as LOCALs and GLOBALs. |
1LOCAL cFieldName := "Address" 2USE Customer 3// Instead of ? &cFieldName, use this: 4? VarGet(cFieldName) // 101 5th Street