Castle.MonoRail.Framework.Internal.ResourceDictionary.Contains C# (CSharp) Method

Contains() public method

Determines whether the resource contains the specified key.
public Contains ( object key ) : bool
key object The key.
return bool
		public bool Contains(object key)
		{
			return map.Contains(key);
		}