 | BlueprintTryGetValue Method |
Tries to retrieve the value the specified key is mapped to within this
blueprint. Searches for the key in a parent blueprint if existent.
Namespace: Slash.ECS.BlueprintsAssembly: Slash.ECS.Blueprints (in Slash.ECS.Blueprints.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic bool TryGetValue(
Object key,
out Object value
)
Public Function TryGetValue (
key As Object,
<OutAttribute> ByRef value As Object
) As Boolean
public:
bool TryGetValue(
Object^ key,
[OutAttribute] Object^% value
)
member 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; otherwise, false.
See Also