You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Value class has no possibility to compare with another Value object.
There is a possibility to convert to another type, but no way to understand what type Value is.
For example there is: public static implicit operator string(Value value) => value.String;
or
But no way to understand if Value is a string. As ValueType enum is private, and _valueType field is also private, and no property to get it.
Would be great to have possibility to compare Value.
The text was updated successfully, but these errors were encountered:
Value class has no possibility to compare with another Value object.
There is a possibility to convert to another type, but no way to understand what type Value is.
For example there is:
public static implicit operator string(Value value) => value.String;
or
But no way to understand if Value is a string. As ValueType enum is private, and _valueType field is also private, and no property to get it.
Would be great to have possibility to compare Value.
The text was updated successfully, but these errors were encountered: