Boo.Lang.Compiler.Ast.TypeReferenceCollection.Contains C# (CSharp) 메소드

Contains() 공개 메소드

public Contains ( string name ) : bool
name string
리턴 bool
        public bool Contains(string name)
        {
            foreach (SimpleTypeReference item in this)
            {
                if (name == item.Name) return true;
            }
            return false;
        }