- 
                Notifications
    
You must be signed in to change notification settings  - Fork 35
 
M_CodeJam_Code_NotNullAndItemNotNull__1
        Andrew Koryavchenko edited this page Jul 4, 2017 
        ·
        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 : classVB
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