System.Windows.Forms.FormCollection.FindIndex C# (CSharp) Method

FindIndex() public method

public FindIndex ( Predicate
match ) : int
match Predicate
return int
        public int FindIndex(Predicate<Form> match)
        {
            return items.FindIndex(match);
        }