 | AttributeTableTryGetValue Method |
Tries to retrieve the value the passed key is mapped to within this
attribute table.
Namespace: Slash.Collections.AttributeTablesAssembly: Slash.Collections (in Slash.Collections.dll) Version: 1.0.6018.40177
Syntaxpublic virtual bool TryGetValue(
Object key,
out Object value
)
Public Overridable Function TryGetValue (
key As Object,
<OutAttribute> ByRef value As Object
) As Boolean
public:
virtual bool TryGetValue(
Object^ key,
[OutAttribute] Object^% value
)
abstract TryGetValue :
key : Object *
value : Object byref -> bool
override TryGetValue :
key : Object *
value : Object byref -> bool
Parameters
- key
- Type: SystemObject
Key to retrieve the value of. - value
- Type: SystemObject
Retrieved value.
Return Value
Type:
Boolean true if a value was found, and false otherwise.
Implements
IAttributeTableTryGetValue(Object, Object)
See Also