System.Data.DataRelationCollection.Contains C# (CSharp) 메소드

Contains() 공개 메소드

Returns true if this collection has a relation with the given name (case insensitive), false otherwise.
public Contains ( string name ) : bool
name string
리턴 bool
        public virtual bool Contains(string name) => (InternalIndexOf(name) >= 0);