Rhino.UintMap.GetObject C# (CSharp) Method

GetObject() public method

Get object value assigned with key.
Get object value assigned with key.
public GetObject ( int key ) : object
key int
return object
		public virtual object GetObject(int key)
		{
			if (key < 0)
			{
				Kit.CodeBug();
			}
			if (values != null)
			{
				int index = FindIndex(key);
				if (0 <= index)
				{
					return values[index];
				}
			}
			return null;
		}