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

this() public method

Gets or sets the Castle.MonoRail.Framework.IResource with the specified key.
public this ( object key ) : IResource
key object
return IResource
		public IResource this[object key]
		{
			get { return map[key] as IResource; }
			set { map[key] = value; }
		}