Exemple #1
0
        bool HasSameValue(Variant other)
        {
            if (!HoldType.Equals(other.HoldType))
            {
                return(false);
            }

            // TODO implement GenericParam comparison properly
            return(true);
        }
 public bool Equals(DerivedType other)
 {
     return(other != null &&
            SerializedType.Equals(other._baseType, other._baseType) &&
            SerializedType.Equals(other._typeValue, _typeValue));
 }