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

Contains() public method

Determines whether [contains] [the specified o].
public Contains ( Object o ) : bool
o Object The o.
return bool
        public override bool Contains(Object o)
        {
            if (!(o is ValueType))
                return false;
            return CONTAINS(Convert.ToInt32(o));
        }