Retrieve the value of a property by key.

Namespace:  BioSharp.Core.Bio
Assembly:  BioSharp.Core (in BioSharp.Core.dll) Version: 0.1.3191.26120 (0.1.0.0)

Syntax

C#
Object GetProperty(
	Object key
)

Parameters

key
Type: System..::.Object
the key of the property to retrieve

Return Value

the object associated with that key

Remarks

Unlike the Map collections, it will complain if the key does not exist. It will only return null if the key is defined and has value null.

Normal raw access to the property. For cleverer access, use methods in AnnotationType.

See Also