Click here to Skip to main content
15,889,876 members
Articles / Programming Languages / C#

Handy Extension Methods

1 Jul 2011CPOL 332   3
Few extension methods for Int32 in C#,public static class IntExtensions{ public static int IncrementByOne(this int item) { return IncrementBy(item, 1); } public static int IncrementBy(this int item, int by) { return item + by; } ...
We're sorry, but the article you are trying to view was deleted at 22 Aug 2011.

Please go to the C# Table of Contents to view the list of available articles in this section.