Requires.NotDefault<T>(T, String) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
ArgumentException如果指定的參數值等於預設TypeT
值,則會擲回 。
public:
generic <typename T>
where T : value class static void NotDefault(T value, System::String ^ parameterName);
[System.Diagnostics.DebuggerStepThrough]
public static void NotDefault<T> (T value, string? parameterName = default) where T : struct;
[<System.Diagnostics.DebuggerStepThrough>]
static member NotDefault : 'T * string -> unit (requires 'T : struct)
Public Shared Sub NotDefault(Of T As Structure) (value As T, Optional parameterName As String = Nothing)
類型參數
- T
參數的類型。
參數
- value
- T
引數的值。
- parameterName
- String
要包含在任何擲回例外狀況的參數名稱。 如果省略此自變數 (明確寫入 null
不符合) ,則第一個自變數中使用的運算式將作為參數名稱。
- 屬性
例外狀況
如果 value
為 null
或空白,則會擲回 。