moved from SVN to git

This commit is contained in:
root
2016-06-27 01:45:38 +02:00
commit 886b5e4fd6
4735 changed files with 2306248 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
using System.Collections.Generic;
namespace BS.Shared.Extensions
{
public static class IEnumerableStringExtensions
{
public static bool ContainsNullOrEmpty(this IEnumerable<string> pList)
{
foreach (string iString in pList)
{
if (string.IsNullOrEmpty(iString))
{
return true;
}
}
return false;
}
}
}