ArgumentOutOfRangeException.ThrowIfEqual<T>(T, T, String) 方法

定义

如果 等于 other,则valueArgumentOutOfRangeException引发 。

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)

类型参数

T

要验证的对象的类型。

参数

value
T

要验证为 不等于 other的参数。

other
T

要与 value进行比较的值。

paramName
String

与之 value 对应的参数的名称。

适用于