共用方式為


Requires.NotDefault<T>(T, String) 方法

定義

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 不符合) ,則第一個自變數中使用的運算式將作為參數名稱。

屬性

例外狀況

如果 valuenull 或空白,則會擲回 。

適用於