Requires.NullOrNotNullElements<T>(IEnumerable<T>, String) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
如果指定的參數值不是 Null 且具有 Null 值的 元素, 則會 擲回例外狀況。
public:
generic <typename T>
static void NullOrNotNullElements(System::Collections::Generic::IEnumerable<T> ^ values, System::String ^ parameterName);
[System.Diagnostics.DebuggerStepThrough]
public static void NullOrNotNullElements<T> (System.Collections.Generic.IEnumerable<T> values, string? parameterName);
[System.Diagnostics.DebuggerStepThrough]
public static void NullOrNotNullElements<T> (System.Collections.Generic.IEnumerable<T> values, string? parameterName = default);
[<System.Diagnostics.DebuggerStepThrough>]
static member NullOrNotNullElements : seq<'T> * string -> unit
Public Shared Sub NullOrNotNullElements(Of T) (values As IEnumerable(Of T), parameterName As String)
Public Shared Sub NullOrNotNullElements(Of T) (values As IEnumerable(Of T), Optional parameterName As String = Nothing)
類型參數
- T
序列中的項目類型。
參數
- values
- IEnumerable<T>
引數的值。
- parameterName
- String
要包含在任何擲回例外狀況的參數名稱。 如果省略此自變數 (明確寫入 null
不符合) ,則第一個自變數中使用的運算式將作為參數名稱。
- 屬性
例外狀況
如果測試的條件為 false,則會擲回 。