-
Notifications
You must be signed in to change notification settings - Fork 36
M_CodeJam_Code_NotNullAndItemNotNull__1
andrewvk edited this page Jul 1, 2016
·
4 revisions
Ensures that arg and its all items != null
Namespace: CodeJam
Assembly: CodeJam (in CodeJam.dll) Version: 1.1.0.0 (1.1.0.0)
C#
public static void NotNullAndItemNotNull<T>(
IEnumerable<T> arg,
string argName
)
where T : class
VB
Public Shared Sub NotNullAndItemNotNull(Of T As Class) (
arg As IEnumerable(Of T),
argName As String
)
F#
static member NotNullAndItemNotNull :
arg : IEnumerable<'T> *
argName : string -> unit when 'T : not struct
- arg
- Type: System.Collections.Generic.IEnumerable(T)
The argument. - argName
- Type: System.String
Name of the argument.
- T
- Type of the value. Auto-inferred in most cases