Cream.AllenTemporal.AllenDomain.IndexOf C# (CSharp) Method

IndexOf() public method

Indexes the of.
public IndexOf ( Object o ) : int
o Object The o.
return int
        public int IndexOf(Object o)
        {
            if (!(o is ValueType))
                return -1;
            return IndexOf(Convert.ToInt32(o));
        }

Same methods

AllenDomain::IndexOf ( int elem ) : int