Szerkesztés

Megosztás a következőn keresztül:


XxHash64 Constructors

Definition

Overloads

XxHash64()

Initializes a new instance of the XxHash64 class.

XxHash64(Int64)

Initializes a new instance of the XxHash64 class with a specified seed.

XxHash64()

Source:
XxHash64.cs
Source:
XxHash64.cs
Source:
XxHash64.cs
Source:
XxHash64.cs

Initializes a new instance of the XxHash64 class.

public:
 XxHash64();
public XxHash64 ();
Public Sub New ()

Remarks

The XxHash64 algorithm supports an optional seed value. Instances created with this constructor use the default seed, zero.

Applies to

XxHash64(Int64)

Source:
XxHash64.cs
Source:
XxHash64.cs
Source:
XxHash64.cs
Source:
XxHash64.cs

Initializes a new instance of the XxHash64 class with a specified seed.

public:
 XxHash64(long seed);
public XxHash64 (long seed);
new System.IO.Hashing.XxHash64 : int64 -> System.IO.Hashing.XxHash64
Public Sub New (seed As Long)

Parameters

seed
Int64

The hash seed value for computations from this instance.

Applies to