ArgumentOutOfRangeException.ThrowIfEqual(T, T, String) Method (System) (original) (raw)
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
public static void ThrowIfEqual<T>(T value, T other, string? paramName = default) where T : IEquatable<T>;
static member ThrowIfEqual : 'T * 'T * string -> unit (requires 'T :> IEquatable<'T>)
Public Shared Sub ThrowIfEqual(Of T As IEquatable(Of T)) (value As T, other As T, Optional paramName As String = Nothing)
Type Parameters
T
The type of the objects to validate.
Parameters
value
T
The argument to validate as not equal to other
.
other
T
The value to compare with value
.
paramName
The name of the parameter with which value
corresponds.