Castle.Facilities.NHibernateIntegration.Util.FieldInfoCollection.ContainsKey C# (CSharp) 메소드

ContainsKey() 공개 메소드

Determines whether the FieldInfoCollection contains the specified MemberInfo.Name value.
ContainsKey is similar to Contains but compares the specified key to the value of the MemberInfo.Name property of each FieldInfo element, rather than to the element itself.
public ContainsKey ( string key ) : bool
key string /// The value to locate /// in the . /// This argument may be a null reference. ///
리턴 bool
		public bool ContainsKey(string key)
		{
			return (IndexOfKey(key) >= 0);
		}