SystemEX  Lacking
Additional generic collection types missing in .net
SystemEx.Hash.Hash64 Struct Reference

Represents a 64‑bit hash value produced by a SystemEx hashing algorithm. More...

Public Member Functions

 Hash64 (ulong value)
 Creates a new 64‑bit hash wrapper.
override string ToString ()

Public Attributes

readonly ulong Value
 The raw 64‑bit hash value.

Detailed Description

Represents a 64‑bit hash value produced by a SystemEx hashing algorithm.

The struct is immutable and stores the raw 64‑bit result exactly as returned by the underlying hasher. No normalization or reinterpretation is performed.

Constructor & Destructor Documentation

◆ Hash64()

SystemEx.Hash.Hash64.Hash64 ( ulong value)

Creates a new 64‑bit hash wrapper.

64=> Value = value;

Member Function Documentation

◆ ToString()

override string SystemEx.Hash.Hash64.ToString ( )

67 {
68 return Value.ToString("X4");
69 }

Member Data Documentation

◆ Value

readonly ulong SystemEx.Hash.Hash64.Value

The raw 64‑bit hash value.


The documentation for this struct was generated from the following file:
  • IHash.cs