ArgumentOutOfRangeException.ThrowIfLessThan<T>(T, T, String) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
如果 value
小於 other
,則會擲回 ArgumentOutOfRangeException 。
public static void ThrowIfLessThan<T> (T value, T other, string? paramName = default) where T : IComparable<T>;
static member ThrowIfLessThan : 'T * 'T * string -> unit (requires 'T :> IComparable<'T>)
Public Shared Sub ThrowIfLessThan(Of T As IComparable(Of T)) (value As T, other As T, Optional paramName As String = Nothing)
類型參數
- T
要驗證的物件型別。
參數
- value
- T
要驗證為大於或等於 other
的引數。
- other
- T
要與 value
比較的值。
- paramName
- String
對應之參數 value
的名稱。