Serilog.Events.ScalarValue.GetHashCode C# (CSharp) Méthode

GetHashCode() public méthode

Get a hash code representing the value.
public GetHashCode ( ) : int
Résultat int
        public override int GetHashCode()
        {
            if (Value == null) return 0;
            return Value.GetHashCode();
        }