Edit

Share via


XxHash32 Constructors

Definition

Overloads

XxHash32()

Initializes a new instance of the XxHash32 class.

XxHash32(Int32)

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

XxHash32()

Source:
XxHash32.cs
Source:
XxHash32.cs
Source:
XxHash32.cs
Source:
XxHash32.cs

Initializes a new instance of the XxHash32 class.

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

Remarks

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

Applies to

XxHash32(Int32)

Source:
XxHash32.cs
Source:
XxHash32.cs
Source:
XxHash32.cs
Source:
XxHash32.cs

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

public:
 XxHash32(int seed);
public XxHash32 (int seed);
new System.IO.Hashing.XxHash32 : int -> System.IO.Hashing.XxHash32
Public Sub New (seed As Integer)

Parameters

seed
Int32

The hash seed value for computations from this instance.

Applies to