Serilog.Events.ScalarValue.GetHashCode C# (CSharp) Метод

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

Get a hash code representing the value.
public GetHashCode ( ) : int
Результат int
        public override int GetHashCode()
        {
            if (Value == null) return 0;
            return Value.GetHashCode();
        }