Serilog.Events.ScalarValue.GetHashCode C# (CSharp) Method

GetHashCode() public method

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