()
| 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)] |
nothing calls this directly
no outgoing calls
no test coverage detected