MCPcopy Create free account
hub / github.com/AngusJohnson/Clipper2 / GetHashCode

Method GetHashCode

CSharp/Clipper2Lib/HashCode.cs:115–120  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

113
114#pragma warning disable CS0809 // Obsolete member overrides non-obsolete member
115 [Obsolete("HashCode is a mutable struct and should not be compared with other HashCodes. Use ToHashCode to retrieve the computed hash code.", error: true)]
116 [EditorBrowsable(EditorBrowsableState.Never)]
117 public override int GetHashCode()
118 {
119 throw new NotSupportedException($"{nameof(HashCode)}.{nameof(GetHashCode)}() is not supported");
120 }
121
122 [Obsolete("HashCode is a mutable struct and should not be compared with other HashCodes.", error: true)]
123 [EditorBrowsable(EditorBrowsableState.Never)]

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected