Horje
check that IEnumerable is not empty Code Example
check that IEnumerable is not empty
public static class Utils {
    public static bool IsAny<T>(this IEnumerable<T> data) {
        return data != null && data.Any();
    }
}




Csharp

Related
.net new template Code Example .net new template Code Example
enable asnotracking in asp.net core at global level Code Example enable asnotracking in asp.net core at global level Code Example
//Unity rigidbody drag and top speed relation: Code Example //Unity rigidbody drag and top speed relation: Code Example
check which activity in focus in android Code Example check which activity in focus in android Code Example
how to remove tashkeel from arabic charactor Code Example how to remove tashkeel from arabic charactor Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9