Boo.Lang.Compiler.Ast.TypeReferenceCollection.Contains C# (CSharp) Method

Contains() public method

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