Extension Methods from Omkar Panhalkar
-
IsNotNullOrEmpty
It returns false if given collection is null or empty otherwise it returns true.
-
DeepClone
It returns deep copy of the object.
-
IsNullOrEmptyOrWhiteSpace
It returns true if string is null or empty or just a white space otherwise it returns false.
-
IsNull
This method returns true if the value is null otherwise it returns false
-
DoesNotEndWith
It returns true if string does not end with the character otherwise returns false. If you pass null or empty string, false will be returned.
-
IsNotNull
This method returns true if the value if not null otherwise it returns false.
-
DoesNotStartWith
It returns true if string does not start with the character otherwise returns false if you pass null or empty string, false will be returned.