This blog is primarily a compilation of frequently faced issues by developers with solutions which I have implemented to solve them
bool IsEmpty(IEnumerable en) { foreach(var c in en) { return false; } return true; }
No comments:
Post a Comment