Esempio n. 1
0
 public static void ThrowIfNullOrEmpty <T>(this ICollection <T> collection, string varName)
 {
     Proxy.ThrowIfNullOrEmpty(collection, varName);
 }
Esempio n. 2
0
 public static void ThrowIfNullOrEmpty <T>(this ICollection <T> collection)
 {
     Proxy.ThrowIfNullOrEmpty(collection);
 }
Esempio n. 3
0
 public static void ThrowIfNullOrEmpty(this string strValue, string varName)
 {
     Proxy.ThrowIfNullOrEmpty(strValue, varName);
 }
Esempio n. 4
0
 public static void ThrowIfNull(this object obj, string varName)
 {
     Proxy.ThrowIfNull(obj, varName);
 }
Esempio n. 5
0
 public static void ThrowIfNull(this object obj)
 {
     Proxy.ThrowIfNull(obj);
 }
Esempio n. 6
0
 public static void ThrowOnFirstNull(params object[] objs)
 {
     Proxy.ThrowOnFirstNull(objs);
 }