System.Collections.ArrayList.IListWrapper.IndexOf(object)

Here are the examples of the csharp api class System.Collections.ArrayList.IListWrapper.IndexOf(object) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Example 7

1. Example

Project: SharpLang
Source File: ArrayList.cs
public override void Remove(Object value) {
                int index = IndexOf(value);                
                if (index >=0) 
                    RemoveAt(index);
            }