Cream.AllenTemporal.AllenDomain.Contains C# (CSharp) Метод

Contains() публичный Метод

Determines whether [contains] [the specified o].
public Contains ( Object o ) : bool
o Object The o.
Результат bool
        public override bool Contains(Object o)
        {
            if (!(o is ValueType))
                return false;
            return CONTAINS(Convert.ToInt32(o));
        }