'Declaration
<ExtensionAttribute()> Public Shared Function FindSymbolName( _ ByVal codeBits As UACodeBits, _ ByRef symbolName As String _ ) As Boolean
'Usage
Dim codeBits As UACodeBits Dim symbolName As String Dim value As Boolean value = UACodeBitsExtension.FindSymbolName(codeBits, symbolName)
[Extension()] public static bool FindSymbolName( UACodeBits codeBits, out string symbolName )
[Extension()] public: static bool FindSymbolName( UACodeBits codeBits, [Out] String^ symbolName )
Parameters
- codeBits
- Code bits to be looked up.
- symbolName
- Symbol name that corresponds to numerical value.
The value of this parameter can be
null
(Nothing
in Visual Basic).
Return Value
True
if there is a symbol name for the value, and symbolName
has been filled with corresponding string; false
otherwise.