Castle.ActiveRecord.Framework.Internal.ActiveRecordModelCollection.Contains C# (CSharp) Method

Contains() public method

Determines whether the collection contains the specified type.
public Contains ( Type type ) : bool
type System.Type The type.
return bool
		public bool Contains(Type type)
		{
			return Dictionary.Contains(type);
		}
ActiveRecordModelCollection