3 references to IndexOf
System.DirectoryServices (3)
System\DirectoryServices\SchemaNameCollection.cs (3)
104public bool Contains(string? value) => IndexOf(value) != -1; 157int index = IndexOf(value); 202int IList.IndexOf(object? value) => IndexOf((string?)value);