@@ -39,8 +39,8 @@ public static partial class Query
39
39
40
40
[ Description ( "Checks if a collection is null or empty and outputs relevant error message." ) ]
41
41
[ Input ( "collection" , "The collection to test for null value or emptiness." ) ]
42
- [ Input ( "methodName" , "The name of the method to reference in the error message." ) ]
43
42
[ Input ( "msg" , "Optional message to be returned in addition to the generated error message." ) ]
43
+ [ Input ( "methodName" , "The name of the method to reference in the error message." ) ]
44
44
[ Output ( "isNull" , "True if the collection is null or empty." ) ]
45
45
public static bool IsNullOrEmpty < T > ( this IEnumerable < T > collection , string msg = "" , [ CallerMemberName ] string methodName = "" )
46
46
{
@@ -51,8 +51,8 @@ public static bool IsNullOrEmpty<T>(this IEnumerable<T> collection, string msg =
51
51
52
52
[ Description ( "Checks if a collection is null and outputs relevant error message." ) ]
53
53
[ Input ( "collection" , "The collection to test for null value." ) ]
54
- [ Input ( "methodName" , "The name of the method to reference in the error message." ) ]
55
54
[ Input ( "msg" , "Optional message to be returned in addition to the generated error message." ) ]
55
+ [ Input ( "methodName" , "The name of the method to reference in the error message." ) ]
56
56
[ Output ( "isNull" , "True if the collection is null." ) ]
57
57
public static bool IsNull < T > ( this IEnumerable < T > collection , string msg = "" , [ CallerMemberName ] string methodName = "" )
58
58
{
0 commit comments