Click here to Skip to main content
15,887,776 members
Articles / Programming Languages / C#

Handy Extension Methods

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
2 Jun 2011CPOL 6.6K  
I'm a fan of these guys... (Though I feel like I might catch some flack for the first one.)public static bool IsNullOrEmpty(this ICollection collection){ return collection == null || collection.Count == 0;}public static float Clamp(this float value, float low, float hi){...

Views

Daily Counts

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Undead Labs
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions