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,则引发。