Post your extension methods for C# .Net (codeplex.com/extensionoverflow) - Stack Overflow most recent 30 from stackoverflow.com 2009-11-21T22:58:50Z http://stackoverflow.com/feeds/question/271398 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow 118 Post your extension methods for C# .Net (codeplex.com/extensionoverflow) bovium 2008-11-07T06:47:21Z 2009-11-21T00:49:46Z <p>Let's make a list of answers where you post your excellent and favorite extension code. </p> <p>The requirement is that the full code must be posted and a example and an explanation on how to use it.</p> <p>Based on the high interest in this topic I have setup an Open Source Project called extensionoverflow on <a href="http://www.codeplex.com/extensionoverflow" rel="nofollow"><strong>Codeplex</strong></a>. </p> <p><strong>Please mark your answers with an acceptance to put the code in the Codeplex project.</strong></p> <p><strong>Please post the full sourcecode and not a link.</strong></p> <p><strong>Codeplex News:</strong></p> <p>11.11.2008 <strong>XmlSerialize / XmlDeserialize</strong> is now <a href="http://www.codeplex.com/extensionoverflow/SourceControl/FileView.aspx?itemId=284374&amp;changeSetId=17001" rel="nofollow">Implemented</a> and <a href="http://www.codeplex.com/extensionoverflow/SourceControl/FileView.aspx?itemId=288847&amp;changeSetId=17001" rel="nofollow">Unit Tested</a>.</p> <p>11.11.2008 There is still room for more developers. ;-) <strong>Join NOW!</strong></p> <p>11.11.2008 Third contributer joined <a href="http://www.codeplex.com/extensionoverflow" rel="nofollow">ExtensionOverflow</a>, welcome to <a href="http://www.codeplex.com/site/users/view/BKristensen" rel="nofollow">BKristensen</a></p> <p>11.11.2008 <strong>FormatWith</strong> is now <a href="http://www.codeplex.com/extensionoverflow/SourceControl/FileView.aspx?itemId=284374&amp;changeSetId=16839" rel="nofollow">Implemented</a> and <a href="http://www.codeplex.com/extensionoverflow/SourceControl/FileView.aspx?itemId=288847&amp;changeSetId=16839" rel="nofollow">Unit Tested</a>.</p> <p>09.11.2008 Second contributer joined <a href="http://www.codeplex.com/extensionoverflow" rel="nofollow">ExtensionOverflow</a>. welcome to <a href="http://stackoverflow.com/users/3055/chakrit">chakrit</a>.</p> <p>09.11.2008 We need more developers. ;-)</p> <p>09.11.2008 <strong>ThrowIfArgumentIsNull</strong> in now <a href="http://www.codeplex.com/extensionoverflow/SourceControl/FileView.aspx?itemId=278942&amp;changeSetId=16468" rel="nofollow">Implemented</a> and <a href="http://www.codeplex.com/extensionoverflow/SourceControl/FileView.aspx?itemId=284112&amp;changeSetId=16468" rel="nofollow">Unit Tested</a> on Codeplex.</p> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/271409#271409 10 Answer by bovium for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) bovium 2008-11-07T06:59:24Z 2008-11-08T22:07:36Z <p>The ThrowIfArgumentIsNull is a nice way to do that null check we all should do.</p> <pre><code>public static class Extensions { public static void ThrowIfArgumentIsNull&lt;T&gt;(this T obj, string parameterName) where T : class { if (obj == null) throw new ArgumentNullException(parameterName + " not allowed to be null"); } } </code></pre> <p>Below is the way to use it and it works on all classes in your namespace or wherever you use the namespace its within.</p> <pre><code>internal class Test { public Test(string input1) { input1.ThrowIfArgumentIsNull("input1"); } } </code></pre> <p><strong>It's ok to use this code on the <a href="http://www.codeplex.com/extensionmethod" rel="nofollow">CodePlex</a> project.</strong> </p> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/271411#271411 42 Answer by chakrit for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) chakrit 2008-11-07T07:03:41Z 2009-03-04T16:55:25Z <p>string.Format shortcut:</p> <pre><code>public static class StringExtensions { // Enable quick and more natural string.Format calls public static string F(this string s, params object[] args) { return string.Format(s, args); } } </code></pre> <p>Example:</p> <pre><code>var s = "The co-ordinate is ({0}, {1})".F(point.X, point.Y); </code></pre> <p>For quick copy-and-paste go <a href="http://pastebin.com/f3e2a94d6" rel="nofollow">here</a>.</p> <p>Don't you find it more natural to type <code>"some string".F("param")</code> instead of <code>string.Format("some string", "param")</code> ?</p> <p>For a more <em>readable</em> name, try one of these suggestion:</p> <pre><code>s = "Hello {0} world {1}!".Fmt("Stack", "Overflow"); s = "Hello {0} world {1}!".FormatBy("Stack", "Overflow"); s = "Hello {0} world {1}!".FormatWith("Stack", "Overflow"); s = "Hello {0} world {1}!".Display("Stack", "Overflow"); s = "Hello {0} world {1}!".With("Stack", "Overflow"); </code></pre> <p>..</p> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/271414#271414 20 Answer by sontek for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) sontek 2008-11-07T07:07:00Z 2008-11-07T07:07:00Z <p><a href="http://www.mono-project.com/Rocks" rel="nofollow">http://www.mono-project.com/Rocks</a> is a full library of some of the most useful extension methods I've seen.</p> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/271418#271418 9 Answer by CMS for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) CMS 2008-11-07T07:09:11Z 2008-11-07T07:09:11Z <p>Convert a double to string formatted using the specified culture:</p> <pre><code>public static class ExtensionMethods { public static string ToCurrency(this double value, string cultureName) { CultureInfo currentCulture = new CultureInfo(cultureName); return (string.Format(currentCulture, "{0:C}", value)); } } </code></pre> <p>Example:</p> <pre><code>double test = 154.20; string testString = test.ToCurrency("en-US"); // $154.20 </code></pre> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/271421#271421 12 Answer by mlarsen for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) mlarsen 2008-11-07T07:11:02Z 2008-11-10T14:40:51Z <pre><code>public static class StringExtensions { /// &lt;summary&gt; /// Parses a string into an Enum /// &lt;/summary&gt; /// &lt;typeparam name="T"&gt;The type of the Enum&lt;/typeparam&gt; /// &lt;param name="value"&gt;String value to parse&lt;/param&gt; /// &lt;returns&gt;The Enum corresponding to the stringExtensions&lt;/returns&gt; public static T EnumParse&lt;T&gt;(this string value) { return StringExtensions.EnumParse&lt;T&gt;(value, false); } public static T EnumParse&lt;T&gt;(this string value, bool ignorecase) { if (value == null) { throw new ArgumentNullException("value"); } value = value.Trim(); if (value.Length == 0) { throw new ArgumentException("Must specify valid information for parsing in the string.", "value"); } Type t = typeof(T); if (!t.IsEnum) { throw new ArgumentException("Type provided must be an Enum.", "T"); } return (T)Enum.Parse(t, value, ignorecase); } } </code></pre> <p>Useful to parse a string into an Enum.</p> <pre><code>public enum TestEnum { Bar, Test } public class Test { public void Test() { TestEnum foo = "Test".EnumParse&lt;TestEnum&gt;(); } } </code></pre> <p>Credit goes to <a href="http://geekswithblogs.net/sdorman/" rel="nofollow">Scott Dorman</a></p> <p>--- Edit for Codeplex project ---</p> <p>I have asked Scott Dorman if he would mind us publishing his code in the Codeplex project. This is the reply I got from him:</p> <blockquote> <p>Thanks for the heads-up on both the SO post and the CodePlex project. I have upvoted your answer on the question. Yes, the code is effectively in the public domain currently under the CodeProject Open License (<a href="http://www.codeproject.com/info/cpol10.aspx" rel="nofollow">http://www.codeproject.com/info/cpol10.aspx</a>).</p> <p>I have no problems with this being included in the CodePlex project, and if you want to add me to the project (username is sdorman) I will add that method plus some additional enum helper methods.</p> </blockquote> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/271423#271423 17 Answer by TWith2Sugars for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) TWith2Sugars 2008-11-07T07:11:59Z 2009-03-06T12:43:21Z <p>By all means put this in the codeplex project.</p> <p>Serialising / Deserialising objects to Xml:</p> <pre><code>private static readonly Dictionary&lt;Type, XmlSerializer&gt; serialisers = new Dictionary&lt;Type, XmlSerializer&gt;(); /// &lt;summary&gt;Serialises an object of type T in to an xml string&lt;/summary&gt; /// &lt;typeparam name="T"&gt;Any class type&lt;/typeparam&gt; /// &lt;param name="objectToSerialise"&gt;Object to serialise&lt;/param&gt; /// &lt;returns&gt;A string that represents Xml, empty oterwise&lt;/returns&gt; public static string XmlSerialise&lt;T&gt;(this T objectToSerialise) where T : class, new() { XmlSerializer serialiser; var type = typeof(T); if (!serialisers.ContainsKey(type)) { serialiser = new XmlSerializer(type); serialisers.Add(type, serialiser); } else { serialiser = serialisers[type]; } string xml; using (var writer = new StringWriter()) { serialiser.Serialize(writer, objectToSerialise); xml = writer.ToString(); } return xml; } /// &lt;summary&gt;Deserialises an xml string in to an object of Type T&lt;/summary&gt; /// &lt;typeparam name="T"&gt;Any class type&lt;/typeparam&gt; /// &lt;param name="xml"&gt;Xml as string to deserialise from&lt;/param&gt; /// &lt;returns&gt;A new object of type T is successful, null if failed&lt;/returns&gt; public static T XmlDeserialise&lt;T&gt;(this string xml) where T : class, new() { XmlSerializer serialiser; var type = typeof(T); if (!serialisers.ContainsKey(type)) { serialiser = new XmlSerializer(type); serialisers.Add(type, serialiser); } else { serialiser = serialisers[type]; } T newObject; using (var reader = new StringReader(xml)) { try { newObject = (T)serialiser.Deserialize(reader); } catch { return null; } // Could not be deserialized to this type. } return newObject; } </code></pre> <p>When building the serialisation I had a help from an online example - but cannot remeber where it is...</p> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/271426#271426 12 Answer by CMS for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) CMS 2008-11-07T07:13:53Z 2008-11-07T07:13:53Z <p><a href="http://www.codeplex.com/DateTimeExtensions" rel="nofollow">DateTimeExtensions</a></p> <p>Examples:</p> <pre><code>DateTime firstDayOfMonth = DateTime.Now.First(); DateTime lastdayOfMonth = DateTime.Now.Last(); DateTime lastFridayInMonth = DateTime.Now.Last(DayOfWeek.Friday); DateTime nextFriday = DateTime.Now.Next(DayOfWeek.Friday); DateTime lunchTime = DateTime.Now.SetTime(11, 30); DateTime noonOnFriday = DateTime.Now.Next(DayOfWeek.Friday).Noon(); DateTime secondMondayOfMonth = DateTime.Now.First(DayOfWeek.Monday).Next(DayOfWeek.Monday).Midnight(); </code></pre> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/271433#271433 -4 Answer by sontek for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) sontek 2008-11-07T07:17:47Z 2008-11-07T07:17:47Z <p>Easily serialize objects into XML:</p> <pre><code>public static string ToXml&lt;T&gt;(this T obj) where T : class { XmlSerializer s = new XmlSerializer(obj.GetType()); using (StringWriter writer = new StringWriter()) { s.Serialize(writer, obj); return writer.ToString(); } } "&lt;root&gt;&lt;child&gt;foo&lt;/child&lt;/root&gt;".ToXml&lt;MyCustomType&gt;(); </code></pre> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/271435#271435 4 Answer by TWith2Sugars for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) TWith2Sugars 2008-11-07T07:20:43Z 2008-11-11T07:14:57Z <p>Another useful one for me:</p> <pre><code>/// &lt;summary&gt; /// Converts any type in to an Int32 /// &lt;/summary&gt; /// &lt;typeparam name="T"&gt;Any Object&lt;/typeparam&gt; /// &lt;param name="value"&gt;Value to convert&lt;/param&gt; /// &lt;returns&gt;The integer, 0 if unsuccessful&lt;/returns&gt; public static int ToInt32&lt;T&gt;(this T value) { int result; if (int.TryParse(value.ToString(), out result)) { return result; } return 0; } /// &lt;summary&gt; /// Converts any type in to an Int32 but if null then returns the default /// &lt;/summary&gt; /// &lt;param name="value"&gt;Value to convert&lt;/param&gt; /// &lt;typeparam name="T"&gt;Any Object&lt;/typeparam&gt; /// &lt;param name="defaultValue"&gt;Default to use&lt;/param&gt; /// &lt;returns&gt;The defaultValue if unsuccessful&lt;/returns&gt; public static int ToInt32&lt;T&gt;(this T value, int defaultValue) { int result; if (int.TryParse(value.ToString(), out result)) { return result; } return defaultValue; } </code></pre> <p>Example:</p> <pre><code>int number = "123".ToInt32(); </code></pre> <p>or: int badNumber = "a".ToInt32(100); // Returns 100 since a is nan</p> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/271437#271437 51 Answer by Jon Skeet for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) Jon Skeet 2008-11-07T07:21:31Z 2009-05-07T07:54:04Z <p>I have various extension methods in my <a href="http://pobox.com/~skeet/csharp/miscutil" rel="nofollow">MiscUtil</a> project (full source is available there - I'm not going to repeat it here). My favourites, some of which involve other classes (such as ranges):</p> <p>Date and time stuff - mostly for unit tests. Not sure I'd use them in production :)</p> <pre><code>var birthday = 19.June(1976); var workingDay = 7.Hours() + 30.Minutes(); </code></pre> <p>Ranges and stepping - massive thanks to Marc Gravell for his <a href="http://www.pobox.com/~skeet/csharp/miscutil/usage/genericoperators.html" rel="nofollow">operator stuf</a>f to make this possible:</p> <pre><code>var evenNaturals = 2.To(int.MaxValue).Step(2); var daysSinceBirth = birthday.To(DateTime.Today).Step(1.Days()); </code></pre> <p>Comparisons:</p> <pre><code>var myComparer = ProjectionComparer.Create(Person p =&gt; p.Name); var next = myComparer.ThenBy(p =&gt; p.Age); var reversed = myComparer.Reverse(); </code></pre> <p>Argument checking:</p> <pre><code>x.ThrowIfNull("x"); </code></pre> <p>LINQ to XML applied to anonymous types (or other types with appropriate properties):</p> <pre><code>// &lt;Name&gt;Jon&lt;/Name&gt;&lt;Age&gt;32&lt;/Age&gt; new { Name="Jon", Age=32}.ToXElements(); // Name="Jon" Age="32" (as XAttributes, obviously) new { Name="Jon", Age=32}.ToXAttributes() </code></pre> <p>Push LINQ - would take too long to explain here, but search for it.</p> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/271444#271444 31 Answer by CMS for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) CMS 2008-11-07T07:30:19Z 2008-11-07T07:30:19Z <pre><code>public static class ComparableExtensions { public static bool Between&lt;T&gt;(this T actual, T lower, T upper) where T : IComparable&lt;T&gt; { return actual.CompareTo(lower) &gt;= 0 &amp;&amp; actual.CompareTo(upper) &lt; 0; } } </code></pre> <p>Example:</p> <pre><code>if (myNumber.Between(3,7)) { // .... } </code></pre> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/271451#271451 1 Answer by Alan for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) Alan 2008-11-07T07:33:37Z 2008-11-07T07:33:37Z <p>An easier way to load default settings from a collection (in real life I use it to populate the settings from any source, including the command line, ClickOnce URL parameters etc.):</p> <pre><code>public static void LoadFrom(this ApplicationSettingsBase settings, NameValueCollection configuration) { if (configuration != null) foreach (string key in configuration.AllKeys) if (!String.IsNullOrEmpty(key)) try { settings[key] = configuration.Get(key); } catch (SettingsPropertyNotFoundException) { // handle bad arguments as you wish } } </code></pre> <p>Example:</p> <pre><code>Settings.Default.LoadFrom(new NameValueCollection() { { "Setting1", "Value1" }, { "Setting2", "Value2" } }); </code></pre> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/271478#271478 2 Answer by cfeduke for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) cfeduke 2008-11-07T07:55:46Z 2008-11-07T07:55:46Z <p>Comes in useful for unit testing:</p> <pre><code>public static IList&lt;T&gt; Clone&lt;T&gt;(this IList&lt;T&gt; list) where T : ICloneable { var ret = new List&lt;T&gt;(list.Count); foreach (var item in list) ret.Add((T)item.Clone()); // done return ret; } </code></pre> <p>A series of these like TWith2Sugars, alternate shortened syntax:</p> <pre><code>public static long? ToNullableInt64(this string val) { long ret; return Int64.TryParse(val, out ret) ? ret : new long?(); } </code></pre> <p>And finally this - is there something already in the BCL that does the following?</p> <pre><code>public static void Split&lt;T&gt;(this T[] array, Func&lt;T,bool&gt; determinator, IList&lt;T&gt; onTrue, IList&lt;T&gt; onFalse) { if (onTrue == null) onTrue = new List&lt;T&gt;(); else onTrue.Clear(); if (onFalse == null) onFalse = new List&lt;T&gt;(); else onFalse.Clear(); if (determinator == null) return; foreach (var item in array) { if (determinator(item)) onTrue.Add(item); else onFalse.Add(item); } } </code></pre> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/271592#271592 1 Answer by mmiika for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) mmiika 2008-11-07T09:15:04Z 2008-11-07T09:15:04Z <p>I like these NUnit Assert extensions: <a href="http://svn.caffeine-it.com/openrasta/trunk/src/Rasta.Testing/AssertExtensions.cs" rel="nofollow">http://svn.caffeine-it.com/openrasta/trunk/src/Rasta.Testing/AssertExtensions.cs</a></p> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/271611#271611 24 Answer by stiduck for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) stiduck 2008-11-07T09:25:16Z 2008-11-07T09:25:16Z <p>The extention method:</p> <pre><code>public static void AddRange&lt;T&gt;(this List&lt;T&gt; list, params T[] values) { foreach (T value in values) list.Add(value); } </code></pre> <p>The method applies for all types and lets you add a range of items to a list as parameters.</p> <p>Example:</p> <pre><code>var list = new List&lt;Int32&gt;(); list.AddRange(5, 4, 8, 4, 2); </code></pre> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/271656#271656 3 Answer by Pure.Krome for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) Pure.Krome 2008-11-07T09:54:28Z 2008-11-08T08:12:09Z <p>HTH. These are some of my main ones.</p> <pre><code>using System; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Text; namespace Insert.Your.Namespace.Here.Helpers { public static class Extensions { public static bool IsNullOrEmpty&lt;T&gt;(this IEnumerable&lt;T&gt; iEnumerable) { // Cheers to Joel Mueller for the bugfix. Was .Count(), now it's .Any() return iEnumerable == null || !iEnumerable.Any(); } public static IList&lt;T&gt; ToListIfNotNullOrEmpty&lt;T&gt;(this IList&lt;T&gt; iList) { return iList.IsNullOrEmpty() ? null : iList; } public static PagedList&lt;T&gt; ToPagedListIfNotNullOrEmpty&lt;T&gt;(this PagedList&lt;T&gt; pagedList) { return pagedList.IsNullOrEmpty() ? null : pagedList; } public static string ToPluralString(this int value) { return value == 1 ? string.Empty : "s"; } public static string ToReadableTime(this DateTime value) { TimeSpan span = DateTime.Now.Subtract(value); const string plural = "s"; if (span.Days &gt; 7) { return value.ToShortDateString(); } switch (span.Days) { case 0: switch (span.Hours) { case 0: if (span.Minutes == 0) { return span.Seconds &lt;= 0 ? "now" : string.Format("{0} second{1} ago", span.Seconds, span.Seconds != 1 ? plural : string.Empty); } return string.Format("{0} minute{1} ago", span.Minutes, span.Minutes != 1 ? plural : string.Empty); default: return string.Format("{0} hour{1} ago", span.Hours, span.Hours != 1 ? plural : string.Empty); } default: return string.Format("{0} day{1} ago", span.Days, span.Days != 1 ? plural : string.Empty); } } public static string ToShortGuidString(this Guid value) { return Convert.ToBase64String(value.ToByteArray()) .Replace("/", "_") .Replace("+", "-") .Substring(0, 22); } public static Guid FromShortGuidString(this string value) { return new Guid(Convert.FromBase64String(value.Replace("_", "/") .Replace("-", "+") + "==")); } public static string ToStringMaximumLength(this string value, int maximumLength) { return ToStringMaximumLength(value, maximumLength, "..."); } public static string ToStringMaximumLength(this string value, int maximumLength, string postFixText) { if (string.IsNullOrEmpty(postFixText)) { throw new ArgumentNullException("postFixText"); } return value.Length &gt; maximumLength ? string.Format(CultureInfo.InvariantCulture, "{0}{1}", value.Substring(0, maximumLength - postFixText.Length), postFixText) : value; } public static string SlugDecode(this string value) { return value.Replace("_", " "); } public static string SlugEncode(this string value) { return value.Replace(" ", "_"); } } } </code></pre> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/271676#271676 2 Answer by Omer van Kloeten for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) Omer van Kloeten 2008-11-07T10:07:39Z 2008-11-07T10:07:39Z <p><a href="http://www.codeplex.com/linqext/" rel="nofollow">http://www.codeplex.com/linqext/</a></p> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/271884#271884 26 Answer by frou for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) frou 2008-11-07T12:11:41Z 2008-11-07T12:11:41Z <p>Are these any use?</p> <pre><code>public static bool CoinToss(this Random rng) { return rng.Next(2) == 0; } public static T OneOf&lt;T&gt;(this Random rng, params T[] things) { return things[rng.Next(things.Length)]; } Random rand; bool luckyDay = rand.CoinToss(); string babyName = rand.OneOf("John", "George", "Radio XBR74 ROCKS!"); </code></pre> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/271941#271941 12 Answer by Venr for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) Venr 2008-11-07T12:41:24Z 2008-11-07T12:41:24Z <p>Here is one I use frequently for presentation formatting.</p> <pre><code> public static string ToTitleCase(this string mText) { string rText = ""; try { System.Globalization.CultureInfo cultureInfo = System.Threading.Thread.CurrentThread.CurrentCulture; System.Globalization.TextInfo TextInfo = cultureInfo.TextInfo; rText = TextInfo.ToTitleCase(mText.ToLower()); } catch { rText = mText; } return rText; } </code></pre> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/271945#271945 5 Answer by brisling for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) brisling 2008-11-07T12:42:59Z 2008-11-09T04:59:31Z <p>Find more examples here: <a href="http://www.extensionmethod.net/" rel="nofollow">www.extensionmethod.net</a></p> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/273648#273648 5 Answer by Adam Lassek for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) Adam Lassek 2008-11-07T21:10:34Z 2008-11-19T18:53:06Z <p>I got tired of tedious null-checking while pulling values from MySqlDataReader, so:</p> <pre><code>public static DateTime? GetNullableDateTime(this MySqlDataReader dr, string fieldName) { DateTime? nullDate = null; return dr.IsDBNull(dr.GetOrdinal(fieldName)) ? nullDate : dr.GetDateTime(fieldName); } public static string GetNullableString(this MySqlDataReader dr, string fieldName) { return dr.IsDBNull(dr.GetOrdinal(fieldName)) ? String.Empty : dr.GetString(fieldName); } public static char? GetNullableChar(this MySqlDataReader dr, string fieldName) { char? nullChar = null; return dr.IsDBNull(dr.GetOrdinal(fieldName)) ? nullChar : dr.GetChar(fieldName); } </code></pre> <p>Of course this could be used with any SqlDataReader.</p> <p><hr /></p> <p>Both hangy and Joe had some good comments on how to do this, and I have since had an opportunity to implement something similar in a different context, so here is another version:</p> <pre><code>public static int? GetNullableInt32(this IDataRecord dr, int ordinal) { int? nullInt = null; return dr.IsDBNull(ordinal) ? nullInt : dr.GetInt32(ordinal); } public static int? GetNullableInt32(this IDataRecord dr, string fieldname) { int ordinal = dr.GetOrdinal(fieldname); return dr.GetNullableInt32(ordinal); } public static bool? GetNullableBoolean(this IDataRecord dr, int ordinal) { bool? nullBool = null; return dr.IsDBNull(ordinal) ? nullBool : dr.GetBoolean(ordinal); } public static bool? GetNullableBoolean(this IDataRecord dr, string fieldname) { int ordinal = dr.GetOrdinal(fieldname); return dr.GetNullableBoolean(ordinal); } </code></pre> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/273665#273665 2 Answer by HBoss for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) HBoss 2008-11-07T21:18:21Z 2008-11-07T21:18:21Z <p>I use these in my web projects, mainly with MVC. I have a handful of these written for the <strong>ViewData</strong> and <strong>TempData</strong></p> <pre><code>/// &lt;summary&gt; /// Checks the Request.QueryString for the specified value and returns it, if none /// is found then the default value is returned instead /// &lt;/summary&gt; public static T QueryValue&lt;T&gt;(this HtmlHelper helper, string param, T defaultValue) { object value = HttpContext.Current.Request.QueryString[param] as object; if (value == null) { return defaultValue; } try { return (T)Convert.ChangeType(value, typeof(T)); } catch (Exception) { return defaultValue; } } </code></pre> <p>That way I can write something like...</p> <pre><code>&lt;% if (Html.QueryValue("login", false)) { %&gt; &lt;div&gt;Welcome Back!&lt;/div&gt; &lt;% } else { %&gt; &lt;%-- Render the control or something --%&gt; &lt;% } %&gt; </code></pre> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/274524#274524 15 Answer by TheSoftwareJedi for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) TheSoftwareJedi 2008-11-08T08:32:33Z 2008-11-08T08:32:33Z <p>My conversion extensions which allow you to do:</p> <pre><code>int i = myString.To&lt;int&gt;(); </code></pre> <p>Here it is, <a href="http://thesoftwarejedi.blogspot.com/2008/05/extension-methods.html" rel="nofollow">as posted on TheSoftwareJedi.com</a></p> <pre><code>public static T To&lt;T&gt;(this IConvertible obj) { return (T)Convert.ChangeType(obj, typeof(T)); } public static T ToOrDefault&lt;T&gt; (this IConvertible obj) { try { return To&lt;T&gt;(obj); } catch { return default(T); } } public static bool ToOrDefault&lt;T&gt; (this IConvertible obj, out T newObj) { try { newObj = To&lt;T&gt;(obj); return true; } catch { newObj = default(T); return false; } } public static T ToOrOther&lt;T&gt; (this IConvertible obj, T other) { try { return To&lt;T&gt;obj); } catch { return other; } } public static bool ToOrOther&lt;T&gt; (this IConvertible obj, out T newObj, T other) { try { newObj = To&lt;T&gt;(obj); return true; } catch { newObj = other; return false; } } public static T ToOrNull&lt;T&gt; (this IConvertible obj) where T : class { try { return To&lt;T&gt;(obj); } catch { return null; } } public static bool ToOrNull&lt;T&gt; (this IConvertible obj, out T newObj) where T : class { try { newObj = To&lt;T&gt;(obj); return true; } catch { newObj = null; return false; } } </code></pre> <p>You can ask for default (calls blank constructor or "0" for numerics) on failure, specify a "default" value (I call it "other"), or ask for null (where T : class). I've also provided both silent exception models, and a typical TryParse model that returns a bool indicating the action taken, and an out param holds the new value. So our code can do things like this</p> <pre><code>int i = myString.To&lt;int&gt;(); string a = myInt.ToOrDefault&lt;string&gt;(); //note type inference DateTime d = myString.ToOrOther(DateTime.MAX_VALUE); double d; //note type inference bool didItGiveDefault = myString.ToOrDefault(out d); string s = myDateTime.ToOrNull&lt;string&gt;(); </code></pre> <p>I couldn't get Nullable types to roll into the whole thing very cleanly. I tried for about 20 minutes before I threw in the towel.</p> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/274649#274649 18 Answer by chakrit for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) chakrit 2008-11-08T11:49:14Z 2009-01-16T11:25:18Z <p>ForEach for IEnumerables</p> <pre><code>public static class FrameworkExtensions { // a map function public static void ForEach&lt;T&gt;(this IEnumerable&lt;T&gt; @enum, Action&lt;T&gt; mapFunction) { foreach (var item in @enum) mapFunction(item); } } </code></pre> <p>Naive example:</p> <pre><code>var buttons = GetListOfButtons() as IEnumerable&lt;Button&gt;; // click all buttons buttons.ForEach(b =&gt; b.Click()); </code></pre> <p>Cool example:</p> <pre><code>// no need to type the same assignment 3 times, just // new[] up an array and use foreach + lambda // everything is properly inferred by csc :-) new { itemA, itemB, itemC } .ForEach(item =&gt; { item.Number = 1; item.Str = "Hello World!"; }); </code></pre> <p>Note:</p> <p>This is not like <code>Select</code> because <code>Select</code> <em>expects</em> your function to return something as for transforming into another list.</p> <p>ForEach simply allows you to execute something for each of the items without any transformations/data manipulation.</p> <p>I made this so I can program in a more functional style and I was surprised that List has a ForEach while IEnumerable does not.</p> <p><em>Put this in the codeplex project</em></p> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/274652#274652 3 Answer by bruno conde for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) bruno conde 2008-11-08T11:53:04Z 2008-11-09T11:18:22Z <p>Function to compare Files/Directories through the <strong>OS File System Info</strong>. This is useful to compare shares with local files. </p> <p><strong>Usage:</strong></p> <pre><code>DirectoryInfo dir = new DirectoryInfo(@"C:\test\myShareDir"); Console.WriteLine(dir.IsSameFileAs(@"\\myMachineName\myShareDir")); FileInfo file = new FileInfo(@"C:\test\myShareDir\file.txt"); Console.WriteLine(file.IsSameFileAs(@"\\myMachineName\myShareDir\file.txt")); </code></pre> <p><strong>Code:</strong></p> <pre><code>public static class FileExtensions { struct BY_HANDLE_FILE_INFORMATION { public uint FileAttributes; public System.Runtime.InteropServices.ComTypes.FILETIME CreationTime; public System.Runtime.InteropServices.ComTypes.FILETIME LastAccessTime; public System.Runtime.InteropServices.ComTypes.FILETIME LastWriteTime; public uint VolumeSerialNumber; public uint FileSizeHigh; public uint FileSizeLow; public uint NumberOfLinks; public uint FileIndexHigh; public uint FileIndexLow; } // // CreateFile constants // const uint FILE_SHARE_READ = 0x00000001; const uint OPEN_EXISTING = 3; const uint GENERIC_READ = (0x80000000); const uint FILE_FLAG_BACKUP_SEMANTICS = 0x02000000; [DllImport("kernel32.dll", SetLastError = true)] static extern IntPtr CreateFile( string lpFileName, uint dwDesiredAccess, uint dwShareMode, IntPtr lpSecurityAttributes, uint dwCreationDisposition, uint dwFlagsAndAttributes, IntPtr hTemplateFile); [DllImport("kernel32.dll", SetLastError = true)] static extern bool GetFileInformationByHandle(IntPtr hFile, out BY_HANDLE_FILE_INFORMATION lpFileInformation); public static bool IsSameFileAs(this FileSystemInfo file, string path) { BY_HANDLE_FILE_INFORMATION fileInfo1, fileInfo2; IntPtr ptr1 = CreateFile(file.FullName, GENERIC_READ, FILE_SHARE_READ, IntPtr.Zero, OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, IntPtr.Zero); if ((int)ptr1 == -1) { System.ComponentModel.Win32Exception e = new System.ComponentModel.Win32Exception(Marshal.GetLastWin32Error()); throw e; } IntPtr ptr2 = CreateFile(path, GENERIC_READ, FILE_SHARE_READ, IntPtr.Zero, OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, IntPtr.Zero); if ((int)ptr2 == -1) { System.ComponentModel.Win32Exception e = new System.ComponentModel.Win32Exception(Marshal.GetLastWin32Error()); throw e; } GetFileInformationByHandle(ptr1, out fileInfo1); GetFileInformationByHandle(ptr2, out fileInfo2); return ((fileInfo1.FileIndexHigh == fileInfo2.FileIndexHigh) &amp;&amp; (fileInfo1.FileIndexLow == fileInfo2.FileIndexLow)); } } </code></pre> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/275303#275303 1 Answer by Timothy Khouri for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) Timothy Khouri 2008-11-08T22:23:49Z 2008-11-08T22:23:49Z <p>I didn't want to add anything that was already said, so here are some that I use that haven't been mentioned. (Sorry if this is too lengthy):</p> <pre><code>public static class MyExtensions { public static bool IsInteger(this string input) { int temp; return int.TryParse(input, out temp); } public static bool IsDecimal(this string input) { decimal temp; return decimal.TryParse(input, out temp); } public static int ToInteger(this string input, int defaultValue) { int temp; return (int.TryParse(input, out temp)) ? temp : defaultValue; } public static decimal ToDecimal(this string input, decimal defaultValue) { decimal temp; return (decimal.TryParse(input, out temp)) ? temp : defaultValue; } public static DateTime ToFirstOfTheMonth(this DateTime input) { return input.Date.AddDays(-1 * input.Day + 1); } // Intentionally returns 0 if the target date is before the input date. public static int MonthsUntil(this DateTime input, DateTime targetDate) { input = input.ToFirstOfTheMonth(); targetDate = targetDate.ToFirstOfTheMonth(); int result = 0; while (input &lt; targetDate) { input = input.AddMonths(1); result++; } return result; } // Used for backwards compatibility in a system built before my time. public static DataTable ToDataTable(this IEnumerable input) { // too much code to show here right now... } } </code></pre> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/275611#275611 7 Answer by yetapb for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) yetapb 2008-11-09T04:43:44Z 2008-11-09T04:49:54Z <p>Takes a camelCaseWord or PascalCaseWord and "wordifies" it, ie camelCaseWord => camel Case Word</p> <pre><code> public static string Wordify( this string camelCaseWord ) { // if the word is all upper, just return it if( !Regex.IsMatch( camelCaseWord, "[a-z]" ) ) return camelCaseWord; return string.Join( " ", Regex.Split( camelCaseWord, @"(?&lt;!^)(?=[A-Z])" ) ); } </code></pre> <p>I often use it in conjuction with Capitalize</p> <pre><code> public static string Capitalize( this string word ) { // The aggregate is because IEnumerable&lt;char&gt;.ToString doesn't return the characters as a string, it returns the type's name as a string. return word[0].ToString( ).ToUpper( ) + word.Skip( 1 ).Aggregate( "", ( s, c ) =&gt; s + c ); } </code></pre> <p>Example usage</p> <pre><code>SomeEntityObject entity = DataAccessObject.GetSomeEntityObject( id ); List&lt;PropertyInfo&gt; properties = entity.GetType().GetPublicNonCollectionProperties( ); // wordify the property names to act as column headers for an html table or something List&lt;string&gt; columns = properties.Select( p =&gt; p.Name.Capitalize( ).Wordify( ) ).ToList( ); </code></pre> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/275620#275620 2 Answer by TraumaPony for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) TraumaPony 2008-11-09T04:56:32Z 2008-12-01T00:15:03Z <pre><code>public static class EnumerableExtensions { [Pure] public static U MapReduce&lt;T, U&gt;(this IEnumerable&lt;T&gt; enumerable, Func&lt;T, U&gt; map, Func&lt;U, U, U&gt; reduce) { CodeContract.RequiresAlways(enumerable != null); CodeContract.RequiresAlways(enumerable.Count() &gt;= 2); CodeContract.RequiresAlways(map != null); CodeContract.RequiresAlways(reduce != null); return enumerable.AsParallel().Select(map).Aggregate(reduce); } [Pure] public static U MapReduce&lt;T, U&gt;(this IList&lt;T&gt; list, Func&lt;T, U&gt; map, Func&lt;U, U, U&gt; reduce) { CodeContract.RequiresAlways(list != null); CodeContract.RequiresAlways(list.Count &gt;= 2); CodeContract.RequiresAlways(map != null); CodeContract.RequiresAlways(reduce != null); U result = map(list[0]); for (int i = 1; i &lt; list.Count; i++) { result = reduce(result,map(list[i])); } return result; } //Parallel version; creates garbage [Pure] public static U MapReduce&lt;T, U&gt;(this IList&lt;T&gt; list, Func&lt;T, U&gt; map, Func&lt;U, U, U&gt; reduce) { CodeContract.RequiresAlways(list != null); CodeContract.RequiresAlways(list.Count &gt;= 2); CodeContract.RequiresAlways(map != null); CodeContract.RequiresAlways(reduce != null); U[] mapped = new U[list.Count]; Parallel.For(0, mapped.Length, i =&gt; { mapped[i] = map(list[i]); }); U result = mapped[0]; for (int i = 1; i &lt; list.Count; i++) { result = reduce(result, mapped[i]); } return result; } } </code></pre> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/275640#275640 3 Answer by Zack Elan for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) Zack Elan 2008-11-09T05:17:59Z 2008-11-09T05:17:59Z <p>Pythonic methods for Dictionaries:</p> <pre><code>/// &lt;summary&gt; /// If a key exists in a dictionary, return its value, /// otherwise return the default value for that type. /// &lt;/summary&gt; public static U GetWithDefault&lt;T, U&gt;(this Dictionary&lt;T, U&gt; dict, T key) { return dict.GetWithDefault(key, default(U)); } /// &lt;summary&gt; /// If a key exists in a dictionary, return its value, /// otherwise return the provided default value. /// &lt;/summary&gt; public static U GetWithDefault&lt;T, U&gt;(this Dictionary&lt;T, U&gt; dict, T key, U defaultValue) { return dict.ContainsKey(key) ? dict[key] : defaultValue; } </code></pre> <p>Useful for when you want to append a timestamp to a filename to assure uniqueness.</p> <pre><code>/// &lt;summary&gt; /// Format a DateTime as a string that contains no characters //// that are banned from filenames, such as ':'. /// &lt;/summary&gt; /// &lt;returns&gt;YYYY-MM-DD_HH.MM.SS&lt;/returns&gt; public static string ToFilenameString(this DateTime dt) { return dt.ToString("s").Replace(":", ".").Replace('T', '_'); } </code></pre> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/276307#276307 5 Answer by Michael Stum for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) Michael Stum 2008-11-09T18:51:34Z 2008-11-09T18:51:34Z <p>"Please mark your answers with an acceptance to put the code in the Codeplex project."</p> <p>Why? All the Stuff on this site under <a href="http://creativecommons.org/licenses/by-sa/2.5/" rel="nofollow">CC-by-sa-2.5</a>, so just put your Extension overflow Project under the same license and you can freely use it.</p> <p>Anyway, here is a String.Reverse function, based on <a href="http://stackoverflow.com/questions/228038/best-way-to-reverse-a-string-in-c-20">this question</a>.</p> <pre><code>/// &lt;summary&gt; /// Reverse a String /// &lt;/summary&gt; /// &lt;param name="input"&gt;The string to Reverse&lt;/param&gt; /// &lt;returns&gt;The reversed String&lt;/returns&gt; public static string Reverse(this string input) { char[] array = input.ToCharArray(); Array.Reverse(array); return new string(array); } </code></pre> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/276331#276331 13 Answer by Charlie for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) Charlie 2008-11-09T19:17:20Z 2009-11-02T19:07:34Z <p>I have an extension method for logging exceptions:</p> <pre><code> public static void string Log(this Exception obj) { //your logging logic here } </code></pre> <p>And it is used like this:</p> <pre><code> try { //Your stuff here } catch(Exception ex) { ex.Log(); } </code></pre> <p>[sorry for posting twice; the 2nd one is better designed :-)]</p> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/279789#279789 1 Answer by for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) 2008-11-11T01:45:38Z 2008-11-11T19:12:46Z <p>Here is another ThrowIfNull implementation:</p> <pre><code> [ThreadStatic] private static string lastMethodName = null; [ThreadStatic] private static int lastParamIndex = 0; [MethodImpl(MethodImplOptions.NoInlining)] public static void ThrowIfNull(this T parameter) { var currentStackFrame = new StackFrame(1); var props = currentStackFrame.GetMethod().GetParameters(); if (!String.IsNullOrEmpty(lastMethodName)) { if (currentStackFrame.GetMethod().Name != lastMethodName) { lastParamIndex = 0; } else if (lastParamIndex >= props.Length - 1) { lastParamIndex = 0; } else { lastParamIndex++; } } else { lastParamIndex = 0; } if (!typeof(T).IsValueType) { for (int i = lastParamIndex; i &lt; props.Length; i++) { if (props[i].ParameterType.IsValueType) { lastParamIndex++; } else { break; } } } if (parameter == null) { string paramName = props[lastParamIndex].Name; throw new ArgumentNullException(paramName); } lastMethodName = currentStackFrame.GetMethod().Name; } </code> </pre> <p>It's not as efficient as the other impementations, but has cleaner usage:</p> <pre> <code> public void Foo() { Bar(1, 2, "Hello", "World"); //no exception Bar(1, 2, "Hello", null); //exception Bar(1, 2, null, "World"); //exception } public void Bar(int x, int y, string someString1, string someString2) { //will also work with comments removed //x.ThrowIfNull(); //y.ThrowIfNull(); someString1.ThrowIfNull(); someString2.ThrowIfNull(); //Do something incredibly useful here! } </code> </pre> <p>Changing the parameters to int? will also work.</p> <p>-bill</p> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/280230#280230 0 Answer by lubos hasko for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) lubos hasko 2008-11-11T07:22:07Z 2008-11-11T07:27:12Z <p>I'm using this one quite a lot...</p> <p>original code:</p> <pre><code>if (guid != Guid.Empty) return guid; else return Guid.NewGuid(); </code></pre> <p>new code:</p> <pre><code>return guid.NewGuidIfEmpty(); </code></pre> <p>extension method:</p> <pre><code>public static Guid NewGuidIfEmpty(this Guid uuid) { return (uuid != Guid.Empty ? uuid : Guid.NewGuid()); } </code></pre> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/280252#280252 5 Answer by Jay Bazuzi for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) Jay Bazuzi 2008-11-11T07:36:56Z 2008-11-11T07:36:56Z <p>I'm disappointed that the .NET Framework prefers that files and directories be represented as strings rather than objects, and that the FileInfo and DirectoryInfo types aren't as powerful as I'd wish. So, I started to write fluent extension methods as I needed them, e.g.:</p> <pre><code> public static FileInfo SetExtension(this FileInfo fileInfo, string extension) { return new FileInfo(Path.ChangeExtension(fileInfo.FullName, extension)); } public static FileInfo SetDirectory(this FileInfo fileInfo, string directory) { return new FileInfo(Path.Combine(directory, fileInfo.Name)); } </code></pre> <p>Yes, you can put this in the codeplex </p> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/280322#280322 5 Answer by spoon16 for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) spoon16 2008-11-11T08:22:26Z 2008-11-11T08:33:39Z <p>This one is for MVC it adds the ability to generate a <code>&lt;label /&gt;</code> tag to the <code>Html</code> variable that is available in every <code>ViewPage</code>. Hopefully it will be of use to others trying to develop similar extensions.</p> <p><strong>Use:</strong></p> <pre><code>&lt;%= Html.Label("LabelId", "ForId", "Text")%&gt; </code></pre> <p><strong>Output:</strong></p> <pre><code>&lt;label id="LabelId" for="ForId"&gt;Text&lt;/label&gt; </code></pre> <p><strong>Code:</strong></p> <pre><code>public static class HtmlHelperExtensions { public static string Label(this HtmlHelper Html, string @for, string text) { return Html.Label(null, @for, text); } public static string Label(this HtmlHelper Html, string @for, string text, object htmlAttributes) { return Html.Label(null, @for, text, htmlAttributes); } public static string Label(this HtmlHelper Html, string @for, string text, IDictionary&lt;string, object&gt; htmlAttributes) { return Html.Label(null, @for, text, htmlAttributes); } public static string Label(this HtmlHelper Html, string id, string @for, string text) { return Html.Label(id, @for, text, null); } public static string Label(this HtmlHelper Html, string id, string @for, string text, object htmlAttributes) { return Html.Label(id, @for, text, new RouteValueDictionary(htmlAttributes)); } public static string Label(this HtmlHelper Html, string id, string @for, string text, IDictionary&lt;string, object&gt; htmlAttributes) { TagBuilder tag = new TagBuilder("label"); tag.MergeAttributes(htmlAttributes); if (!string.IsNullOrEmpty(id)) tag.MergeAttribute("id", Html.AttributeEncode(id)); tag.MergeAttribute("for", Html.AttributeEncode(@for)); tag.SetInnerText(Html.Encode(text)); return tag.ToString(TagRenderMode.Normal); } } </code></pre> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/286327#286327 1 Answer by BFree for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) BFree 2008-11-13T05:30:04Z 2008-11-13T05:55:59Z <p>The Substring method on the string class has always felt inadequate to me. Usually when you do a substring, you know the character(s) from where you want to start, and the charachter(s) where you want to end. Thus, I've always felt that have to specify length as the second parameter is stupid. Therefore, I've written my own extension methods. One that takes a startIndex and an endIndex. And one, that takes a startText (string) and endText (string) so you can just specify the text from where to start the substring, and the text for where to end it.</p> <p>NOTE: I couldn't name the method Substring as in .NET because my first overload takes the same parameter types as one of the .NET overloads. Therefore I named them Subsetstring. Feel free to add to the CodePlex...</p> <pre><code>public static class StringExtensions { /// &lt;summary&gt; /// Returns a Subset string starting at the specified start index and ending and the specified end /// index. /// &lt;/summary&gt; /// &lt;param name="s"&gt;The string to retrieve the subset from.&lt;/param&gt; /// &lt;param name="startIndex"&gt;The specified start index for the subset.&lt;/param&gt; /// &lt;param name="endIndex"&gt;The specified end index for the subset.&lt;/param&gt; /// &lt;returns&gt;A Subset string starting at the specified start index and ending and the specified end /// index.&lt;/returns&gt; public static string Subsetstring(this string s, int startIndex, int endIndex) { if (startIndex &gt; endIndex) { throw new InvalidOperationException("End Index must be after Start Index."); } if (startIndex &lt; 0) { throw new InvalidOperationException("Start Index must be a positive number."); } if(endIndex &lt;0) { throw new InvalidOperationException("End Index must be a positive number."); } return s.Substring(startIndex, (endIndex - startIndex)); } /// &lt;summary&gt; /// Finds the specified Start Text and the End Text in this string instance, and returns a string /// containing all the text starting from startText, to the begining of endText. (endText is not /// included.) /// &lt;/summary&gt; /// &lt;param name="s"&gt;The string to retrieve the subset from.&lt;/param&gt; /// &lt;param name="startText"&gt;The Start Text to begin the Subset from.&lt;/param&gt; /// &lt;param name="endText"&gt;The End Text to where the Subset goes to.&lt;/param&gt; /// &lt;param name="ignoreCase"&gt;Whether or not to ignore case when comparing startText/endText to the string.&lt;/param&gt; /// &lt;returns&gt;A string containing all the text starting from startText, to the begining of endText.&lt;/returns&gt; public static string Subsetstring(this string s, string startText, string endText, bool ignoreCase) { if (string.IsNullOrEmpty(startText) || string.IsNullOrEmpty(endText)) { throw new ArgumentException("Start Text and End Text cannot be empty."); } string temp = s; if (ignoreCase) { temp = s.ToUpperInvariant(); startText = startText.ToUpperInvariant(); endText = endText.ToUpperInvariant(); } int start = temp.IndexOf(startText); int end = temp.IndexOf(endText, start); return Subsetstring(s, start, end); } } </code></pre> <p>Usage:</p> <pre><code> string s = "This is a tester for my cool extension method!!"; s = s.Subsetstring("tester", "cool",true); </code></pre> <p>Output: "tester for my "</p> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/286753#286753 2 Answer by olmo for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) olmo 2008-11-13T10:29:15Z 2008-11-13T10:38:08Z <p>some of my best extensions (I have a loooot) : </p> <pre><code> public static T ToEnum&lt;T&gt;(this string str) where T : struct { return (T)Enum.Parse(typeof(T), str); } //DayOfWeek sunday = "Sunday".ToEnum&lt;DayOfWeek&gt;(); public static string ToString&lt;T&gt;(this IEnumerable&lt;T&gt; collection, string separator) { return ToString(collection, t =&gt; t.ToString(), separator); } public static string ToString&lt;T&gt;(this IEnumerable&lt;T&gt; collection, Func&lt;T, string&gt; stringElement, string separator) { StringBuilder sb = new StringBuilder(); foreach (var item in collection) { sb.Append(stringElement(item)); sb.Append(separator); } return sb.ToString(0, Math.Max(0, sb.Length - separator.Length)); // quita el ultimo separador } //new []{1,2,3}.ToString(i=&gt;i*2, ", ") --&gt; "2, 4, 6" </code></pre> <p>Also, the next ones are ment to be able to continue in the same line in almost any situation, not declaring new variables and then removing state:</p> <pre><code> public static R Map&lt;T, R&gt;(this T t, Func&lt;T, R&gt; func) { return func(t); } ExpensiveFindWally().Map(wally=&gt;wally.FirstName + " " + wally.LastName) public static R TryCC&lt;T, R&gt;(this T t, Func&lt;T, R&gt; func) where T : class where R : class { if (t == null) return null; return func(t); } public static R? TryCS&lt;T, R&gt;(this T t, Func&lt;T, R&gt; func) where T : class where R : struct { if (t == null) return null; return func(t); } public static R? TryCS&lt;T, R&gt;(this T t, Func&lt;T, R?&gt; func) where T : class where R : struct { if (t == null) return null; return func(t); } public static R TrySC&lt;T, R&gt;(this T? t, Func&lt;T, R&gt; func) where T : struct where R : class { if (t == null) return null; return func(t.Value); } public static R? TrySS&lt;T, R&gt;(this T? t, Func&lt;T, R&gt; func) where T : struct where R : struct { if (t == null) return null; return func(t.Value); } public static R? TrySS&lt;T, R&gt;(this T? t, Func&lt;T, R?&gt; func) where T : struct where R : struct { if (t == null) return null; return func(t.Value); } //int? bossNameLength = Departament.Boss.TryCC(b=&gt;b.Name).TryCS(s=&gt;s.Length); public static T ThrowIfNullS&lt;T&gt;(this T? t, string mensaje) where T : struct { if (t == null) throw new NullReferenceException(mensaje); return t.Value; } public static T ThrowIfNullC&lt;T&gt;(this T t, string mensaje) where T : class { if (t == null) throw new NullReferenceException(mensaje); return t; } public static T Do&lt;T&gt;(this T t, Action&lt;T&gt; action) { action(t); return t; } //Button b = new Button{Content = "Click"}.Do(b=&gt;Canvas.SetColumn(b,2)); public static T TryDo&lt;T&gt;(this T t, Action&lt;T&gt; action) where T : class { if (t != null) action(t); return t; } public static T? TryDoS&lt;T&gt;(this T? t, Action&lt;T&gt; action) where T : struct { if (t != null) action(t.Value); return t; } </code></pre> <p>Hope it doesn't look like comming from Mars :)</p> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/291402#291402 6 Answer by Jesse Slicer for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) Jesse Slicer 2008-11-14T21:02:46Z 2008-11-14T21:02:46Z <p>Here's a to-and-from for Roman Numerals. Not often used, but could be handy. Usage:</p> <pre><code>if ("IV".IsValidRomanNumeral ()) { // Do useful stuff with the number 4. } Console.WriteLine ("MMMDCCCLXXXVIII".ParseRomanNumeral ()); Console.WriteLine (3888.ToRomanNumeralString ()); </code></pre> <p>The source:</p> <pre><code>// &lt;copyright file="RomanNumeralExtensions.cs" company="Always Elucidated Solution Pioneers, LLC"&gt; // Copyright (c) 2008 Always Elucidated Solution Pioneers, LLC. All Rights Reserved. // &lt;/copyright&gt; // &lt;author&gt;Jesse C. Slicer&lt;/author&gt; // &lt;email&gt;jslicer@spamcop.net&lt;/email&gt; // &lt;date&gt;2008-10-01&lt;/date&gt; // &lt;summary&gt;Translates Roman Numeral strings to integers and vice-versa.&lt;/summary&gt; namespace Aesop.Extensions { #region Using Directives // System namespaces using System; using System.Collections.Generic; using System.Text; using System.Text.RegularExpressions; #endregion #region Static Class Definition : RomanNumeralExtensions /// &lt;summary&gt; /// Holds the IsValidRomanNumeral (), ParseRomanNumeral () and /// ToRomanNumeralString () extension methods. /// &lt;/summary&gt; public static class RomanNumeralExtensions { #region Public Static Extension Methods /// &lt;summary&gt; /// Determines whether the specified string is a valid Roman numeral. /// &lt;/summary&gt; /// &lt;param name="value"&gt; /// The Roman numeral string to validate. /// &lt;/param&gt; /// &lt;returns&gt; /// &lt;c&gt;true&lt;/c&gt; if the specified string is a valid Roman numeral; /// otherwise, &lt;c&gt;false&lt;/c&gt;. /// &lt;/returns&gt; public static bool IsValidRomanNumeral (this string value) { return m_validRomanNumeral.IsMatch (value); } /// &lt;summary&gt; /// Parses the Roman numeral into its integer equivalent. /// &lt;/summary&gt; /// &lt;param name="value"&gt; /// The Roman numeral string. /// &lt;/param&gt; /// &lt;returns&gt; /// The integer representation of the Roman numeral. /// &lt;/returns&gt; public static int ParseRomanNumeral (this string value) { if (value == null) { throw new ArgumentNullException ("value"); } value = value.ToUpperInvariant ().Trim (); var length = value.Length; if ((length == 0) || !value.IsValidRomanNumeral ()) { throw new ArgumentException ( "Empty or invalid Roman numeral string.", "value"); } var total = 0; var i = length; while (i &gt; 0) { var digit = m_romanNumerals [value [--i].ToString ()]; if (i &gt; 0) { var previousDigit = m_romanNumerals [value [i - 1].ToString ()]; if (previousDigit &lt; digit) { digit -= previousDigit; i--; } } total += digit; } return total; } /// &lt;summary&gt; /// Converts the number to its equivalent Roman numeral string. /// &lt;/summary&gt; /// &lt;param name="value"&gt; /// The integer to convert. /// &lt;/param&gt; /// &lt;returns&gt; /// The Roman numeral representation of the integer. /// &lt;/returns&gt; public static string ToRomanNumeralString (this int value) { const int MinValue = 1; const int MaxValue = 3999; if ((value &lt; MinValue) || (value &gt; MaxValue)) { throw new ArgumentOutOfRangeException ( "value", value, "Argument out of Roman numeral range."); } const int MaxRomanNumeralLength = 15; var sb = new StringBuilder (MaxRomanNumeralLength); foreach (var pair in m_romanNumerals) { while (value / pair.Value &gt; 0) { sb.Append (pair.Key); value -= pair.Value; } } return sb.ToString (); } #endregion #region Private Static Member Data /// &lt;summary&gt; /// The number of mappings in the dictionary. /// &lt;/summary&gt; private const int NumberOfRomanNumeralMaps = 13; /// &lt;summary&gt; /// The regular expression to test the string against. /// &lt;/summary&gt; private static readonly Regex m_validRomanNumeral = new Regex ( "^(?i:(?=[MDCLXVI])((M{0,3})((C[DM])|(D?C{0,3}))" + "?((X[LC])|(L?XX{0,2})|L)?((I[VX])|(V?(II{0,2}))|V)?))$", RegexOptions.Compiled); /// &lt;summary&gt; /// The matching of Roman numeral placeholders to their integer /// equivalents. /// &lt;/summary&gt; private static readonly Dictionary&lt;string, int&gt; m_romanNumerals = new Dictionary&lt;string, int&gt; (NumberOfRomanNumeralMaps) { { "M", 1000 }, { "CM", 900 }, { "D", 500 }, { "CD", 400 }, { "C", 100 }, { "XC", 90 }, { "L", 50 }, { "XL", 40 }, { "X", 10 }, { "IX", 9 }, { "V", 5 }, { "IV", 4 }, { "I", 1 } }; #endregion } #endregion } </code></pre> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/326701#326701 0 Answer by Anthony for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) Anthony 2008-11-28T21:15:09Z 2008-11-28T21:15:09Z <p>Some extensions for working with lists:</p> <pre><code>/// &lt;summary&gt; /// Wrap an object in a list /// &lt;/summary&gt; public static IList&lt;T&gt; InList&lt;T&gt;(this T item) { List&lt;T&gt; result = new List&lt;T&gt;(); result.Add(item); return result; } </code></pre> <p>use eg:</p> <pre><code>myList = someObject.InList(); </code></pre> <p>To make an IEnumerable that contains items from one or more sources, in order to make IEnumerable work more like lists. This is probably not a good idea for high-performance code but useful for making tests:</p> <pre><code>public static IEnumerable&lt;T&gt; Add&lt;T&gt;(this IEnumerable&lt;T&gt; enumerable, T newItem) { List&lt;T&gt; result = new List&lt;T&gt;(enumerable); result.Add(newItem); return result; } public static IEnumerable&lt;T&gt; Add&lt;T&gt;(this IEnumerable&lt;T&gt; enumerable, params T[] newItems) { List&lt;T&gt; result = new List&lt;T&gt;(enumerable); result.AddRange(newItems); return result; } </code></pre> <p>use e.g.</p> <pre><code> someEnumeration = someEnumeration.Add(newItem); </code></pre> <p>Other variations of this are possible - e.g.</p> <pre><code> someEnumeration = someEnumeration.Add(otherEnumeration); </code></pre> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/329561#329561 0 Answer by TT for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) TT 2008-11-30T23:02:41Z 2008-11-30T23:02:41Z <p>These extension methods are pretty useful for me when parsing form input before putting into the database</p> <pre><code>public static int? ToInt(this string input) { int val; if (int.TryParse(input, out val)) return val; return null; } public static DateTime? ToDate(this string input) { DateTime val; if (DateTime.TryParse(input, out val)) return val; return null; } public static decimal? ToDecimal(this string input) { decimal val; if (decimal.TryParse(input, out val)) return val; return null; } </code></pre> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/330044#330044 2 Answer by cbp for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) cbp 2008-12-01T04:24:27Z 2008-12-01T04:42:12Z <p>I like these methods for dealing with enums that have the Flags attribute set:</p> <pre><code>public static bool AnyOf(this object mask, object flags) { return ((int)mask &amp; (int)flags) != 0; } public static bool AllOf(this object mask, object flags) { return ((int)mask &amp; (int)flags) == (int)flags; } public static object SetOn(this object mask, object flags) { return (int)mask | (int)flags; } etc. </code></pre> <p>Example usage:</p> <pre><code>var options = SomeOptions.OptionA; options = options.SetOn(OptionB); options = options.SetOn(OptionC); if (options.AnyOf(SomeOptions.OptionA | SomeOptions.OptionB)) { etc. </code></pre> <p>The original methods were from this article: <a href="http://www.codeproject.com/KB/cs/masksandflags.aspx?display=Print" rel="nofollow">http://www.codeproject.com/KB/cs/masksandflags.aspx?display=Print</a> I just converted them to extension methods.</p> <p>The one problem with them though is that the parameters of object type, which means that <em>all</em> objects end up being extended with these methods, whereas ideally they should only apply to enums.</p> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/346181#346181 3 Answer by Rinat Abdullin for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) Rinat Abdullin 2008-12-06T10:41:00Z 2008-12-06T10:41:00Z <p>Timespan-related extensions like:</p> <pre><code>public static TimeSpan Seconds(this int seconds) { return TimeSpan.FromSeconds(seconds); } public static TimeSpan Minutes(this int minutes) { return TimeSpan.FromMinutes(minutes); } </code></pre> <p>That allow to use:</p> <pre><code>1.Seconds() 20.Minutes() </code></pre> <p>Lock extensions like:</p> <pre><code>public static IDisposable GetReadLock(this ReaderWriterLockSlim slimLock) { slimLock.EnterReadLock(); return new DisposableAction(slimLock.ExitReadLock); } public static IDisposable GetWriteLock(this ReaderWriterLockSlim slimLock) { slimLock.EnterWriteLock(); return new DisposableAction(slimLock.ExitWriteLock); } public static IDisposable GetUpgradeableReadLock(this ReaderWriterLockSlim slimLock) { slimLock.EnterUpgradeableReadLock(); return new DisposableAction(slimLock.ExitUpgradeableReadLock); } </code></pre> <p>That allow to use locks like:</p> <pre><code>using (lock.GetUpgradeableReadLock()) { // try read using (lock.GetWriteLock()) { //do write } } </code></pre> <p>And many other from the <a href="http://rabdullin.com/shared-libraries/" rel="nofollow">Lokad Shared Libraries</a></p> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/357344#357344 1 Answer by robDean for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) robDean 2008-12-10T19:46:28Z 2008-12-10T19:46:28Z <p>This is an extension method for the ASP.Net MVC action link helper method that allows it to use the controller's authorize attributes to decide if the link should be enabled, disabled or hidden from the current user's view. I saves you from having to enclose your restricted actions in "if" clauses that check for user membership in all the views. Thanks to <a href="http://blog.maartenballiauw.be/post/2008/08/29/Building-an-ASPNET-MVC-sitemap-provider-with-security-trimming.aspx" rel="nofollow">Maarten Balliauw</a> for the idea and the code bits that showed me the way :)</p> <pre><code>using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Security.Principal; using System.Web.Routing; using System.Web.Mvc; using System.Collections; using System.Reflection; namespace System.Web.Mvc.Html { public static class HtmlHelperExtensions { /// &lt;summary&gt; /// Shows or hides an action link based on the user's membership status /// and the controller's authorize attributes /// &lt;/summary&gt; /// &lt;param name="linkText"&gt;The link text.&lt;/param&gt; /// &lt;param name="action"&gt;The controller action name.&lt;/param&gt; /// &lt;param name="controller"&gt;The controller name.&lt;/param&gt; /// &lt;returns&gt;&lt;/returns&gt; public static string SecurityTrimmedActionLink( this HtmlHelper htmlHelper, string linkText, string action, string controller) { return SecurityTrimmedActionLink(htmlHelper, linkText, action, controller, false, null); } /// &lt;summary&gt; /// Enables, disables or hides an action link based on the user's membership status /// and the controller's authorize attributes /// &lt;/summary&gt; /// &lt;param name="linkText"&gt;The link text.&lt;/param&gt; /// &lt;param name="action"&gt;The action name.&lt;/param&gt; /// &lt;param name="controller"&gt;The controller name.&lt;/param&gt; /// &lt;param name="showDisabled"&gt;if set to &lt;c&gt;true&lt;/c&gt; [show link as disabled - /// using a span tag instead of an anchor tag ].&lt;/param&gt; /// &lt;param name="disabledAttributeText"&gt;Use this to add attributes to the disabled /// span tag.&lt;/param&gt; /// &lt;returns&gt;&lt;/returns&gt; public static string SecurityTrimmedActionLink( this HtmlHelper htmlHelper, string linkText, string action, string controller, bool showDisabled, string disabledAttributeText) { if (IsAccessibleToUser(action, controller, HttpContext.Current )) { return htmlHelper.ActionLink(linkText, action, controller); } else { return showDisabled ? String.Format( "&lt;span{1}&gt;{0}&lt;/span&gt;", linkText, disabledAttributeText==null?"":" "+disabledAttributeText ) : ""; } } private static IController GetControllerInstance(string controllerName) { Assembly assembly = Assembly.GetExecutingAssembly(); Type controllerType = GetControllerType(controllerName); return (IController)Activator.CreateInstance(controllerType); } private static ArrayList GetControllerAttributes(string controllerName, HttpContext context) { if (context.Cache[controllerName + "_ControllerAttributes"] == null) { var controller = GetControllerInstance(controllerName); context.Cache.Add( controllerName + "_ControllerAttributes", new ArrayList(controller.GetType().GetCustomAttributes(typeof(AuthorizeAttribute), true)), null, Caching.Cache.NoAbsoluteExpiration, Caching.Cache.NoSlidingExpiration, Caching.CacheItemPriority.Default, null); } return (ArrayList)context.Cache[controllerName + "_ControllerAttributes"]; } private static ArrayList GetMethodAttributes(string controllerName, string actionName, HttpContext context) { if (context.Cache[controllerName + "_" + actionName + "_ActionAttributes"] == null) { ArrayList actionAttrs = new ArrayList(); var controller = GetControllerInstance(controllerName); MethodInfo[] methods = controller.GetType().GetMethods(); foreach (MethodInfo method in methods) { object[] attributes = method.GetCustomAttributes(typeof(ActionNameAttribute), true); if ((attributes.Length == 0 &amp;&amp; method.Name == actionName) || (attributes.Length &gt; 0 &amp;&amp; ((ActionNameAttribute)attributes[0]).Name == actionName)) { actionAttrs.AddRange(method.GetCustomAttributes(typeof(AuthorizeAttribute), true)); } } context.Cache.Add( controllerName + "_" + actionName + "_ActionAttributes", actionAttrs, null, Caching.Cache.NoAbsoluteExpiration, Caching.Cache.NoSlidingExpiration, Caching.CacheItemPriority.Default, null); } return (ArrayList)context.Cache[controllerName + "_" + actionName+ "_ActionAttributes"]; } public static bool IsAccessibleToUser(string actionToAuthorize, string controllerToAuthorize, HttpContext context) { IPrincipal principal = context.User; //cache the attribute list for both controller class and it's methods ArrayList controllerAttributes = GetControllerAttributes(controllerToAuthorize, context); ArrayList actionAttributes = GetMethodAttributes(controllerToAuthorize, actionToAuthorize, context); if (controllerAttributes.Count == 0 &amp;&amp; actionAttributes.Count == 0) return true; string roles = ""; string users = ""; if (controllerAttributes.Count &gt; 0) { AuthorizeAttribute attribute = controllerAttributes[0] as AuthorizeAttribute; roles += attribute.Roles; users += attribute.Users; } if (actionAttributes.Count &gt; 0) { AuthorizeAttribute attribute = actionAttributes[0] as AuthorizeAttribute; roles += attribute.Roles; users += attribute.Users; } if (string.IsNullOrEmpty(roles) &amp;&amp; string.IsNullOrEmpty(users) &amp;&amp; principal.Identity.IsAuthenticated) return true; string[] roleArray = roles.Split(','); string[] usersArray = users.Split(','); foreach (string role in roleArray) { if (role == "*" || principal.IsInRole(role)) return true; } foreach (string user in usersArray) { if (user == "*" &amp;&amp; (principal.Identity.Name == user)) return true; } return false; } private static Type GetControllerType(string controllerName) { Assembly assembly = Assembly.GetExecutingAssembly(); foreach (Type type in assembly.GetTypes()) { if ( type.BaseType!=null &amp;&amp; type.BaseType.Name == "Controller" &amp;&amp; (type.Name.ToUpper() == (controllerName.ToUpper() + "Controller".ToUpper()))) { return type; } } return null; } } } </code></pre> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/358259#358259 2 Answer by Mark Cidade for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) Mark Cidade 2008-12-11T02:07:57Z 2009-01-06T17:33:51Z <pre><code>static string Format( this string str , params Expression&lt;Func&lt;string,object&gt;&gt;[] args) { var parameters=args.ToDictionary ( e=&gt;string.Format("{{{0}}}",e.Parameters[0].Name) ,e=&gt;e.Compile()(e.Parameters[0].Name)); var sb = new StringBuilder(str); foreach(var kv in parameters) { sb.Replace( kv.Key ,kv.Value != null ? kv.Value.ToString() : ""); } return sb.ToString(); } </code></pre> <p>With the above extension you can write this:</p> <pre><code>var str = "{foo} {bar} {baz}".Format(foo=&gt;foo, bar=&gt;2, baz=&gt;new object()); </code></pre> <p>and you'll get <code>"foo 2 System.Object</code>".</p> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/375076#375076 0 Answer by Mark Cidade for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) Mark Cidade 2008-12-17T16:10:04Z 2008-12-17T16:10:04Z <ul> <li><p>For adding multiple elements to a collection that doesn't have AddRange, e.g., <code>collection.Add(item1, item2, itemN);</code></p> <pre><code>static void Add&lt;T&gt;(this ICollection&lt;T&gt; coll, params T[] items) { foreach (var item in items) coll.Add(item); } </code></pre></li> <li><p>The following is like <code>string.Format()</code> but with custom string representation of arguments, e.g., <code>"{0} {1} {2}".Format&lt;Custom&gt;(c=&gt;c.Name,"string",new object(),new Custom())</code> results in <code>"string {System.Object} Custom1Name"</code></p> <pre><code>static string Format&lt;T&gt;( this string format , Func&lt;T,object&gt; select , params object[] args) { for(int i=0; i &lt; args.Length; ++i) { var x = args[i] as T; if (x != null) args[i] = select(x); } return string.Format(format, args); } </code></pre></li> </ul> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/398308#398308 3 Answer by Mark Maxham for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) Mark Maxham 2008-12-29T18:43:37Z 2008-12-29T18:43:37Z <p>Simple but nicer than "Enumerable.Range", IMHO:</p> <pre><code> /// &lt;summary&gt; /// Replace "Enumerable.Range(n)" with "n.Range()": /// &lt;/summary&gt; /// &lt;param name="n"&gt;iterations&lt;/param&gt; /// &lt;returns&gt;0..n-1&lt;/returns&gt; public static IEnumerable&lt;int&gt; Range(this int n) { for (int i = 0; i &lt; n; i++) yield return i; } </code></pre> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/398423#398423 0 Answer by Mark Maxham for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) Mark Maxham 2008-12-29T19:30:19Z 2008-12-29T19:30:19Z <p>Equivalent to Python's Join method:</p> <pre><code> /// &lt;summary&gt; /// same as python 'join' /// &lt;/summary&gt; /// &lt;typeparam name="T"&gt;list type&lt;/typeparam&gt; /// &lt;param name="separator"&gt;string separator &lt;/param&gt; /// &lt;param name="list"&gt;list of objects to be ToString'd&lt;/param&gt; /// &lt;returns&gt;a concatenated list interleaved with separators&lt;/returns&gt; static public string Join&lt;T&gt;(this string separator, IEnumerable&lt;T&gt; list) { var sb = new StringBuilder(); bool first = true; foreach (T v in list) { if (!first) sb.Append(separator); first = false; if (v != null) sb.Append(v.ToString()); } return sb.ToString(); } </code></pre> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/414561#414561 0 Answer by cseg for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) cseg 2009-01-05T21:15:47Z 2009-01-05T21:15:47Z <p>I use this extension method usually with anonymous types to get a dictionary ala ruby</p> <pre><code> public static Dictionary&lt;string, object&gt; ToDictionary(this object o) { var dictionary = new Dictionary&lt;string, object&gt;(); foreach (var propertyInfo in o.GetType().GetProperties()) { if (propertyInfo.GetIndexParameters().Length == 0) { dictionary.Add(propertyInfo.Name, propertyInfo.GetValue(o, null)); } } return dictionary; } </code></pre> <p>You can use it </p> <pre><code> var dummy = new { color = "#000000", width = "100%", id = "myid" }; Dictionary&lt;string, object&gt; dict = dummy.ToDictionary(); </code></pre> <p>And with an extended method as </p> <pre><code> public static void ForEach&lt;T&gt;(this IEnumerable&lt;T&gt; source, Action&lt;T&gt; action) { foreach (T item in source) { action(item); } } </code></pre> <p>You can do it</p> <pre><code>dummy.ToDictionary().ForEach((p) =&gt; Console.Write("{0}='{1}' ", p.Key, p.Value)); </code></pre> <p>Output </p> <p>color='#000000' width='100%' id='myid'</p> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/423447#423447 0 Answer by Th3Fix3r for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) Th3Fix3r 2009-01-08T06:35:26Z 2009-01-08T06:49:50Z <p>Convert any string to type Int32</p> <pre><code>print("code sample"); /// &lt;summary&gt; /// Calls the underlying int.TryParse method to convert a string representation of a number to its 32-bit signed integer equivalent. Returns Zero if conversion fails. /// &lt;/summary&gt; /// &lt;param name="s"&gt;&lt;/param&gt; /// &lt;returns&gt;returns 0 if the conversion fails&lt;/returns&gt; public static int ToInt32(this string s) { int retInt; bool b = int.TryParse(s, out retInt); return retInt; } </code></pre> <p>SAMPLE USE: string s = "999";</p> <p>int i = s.ToInt32();</p> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/423553#423553 0 Answer by Chris for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) Chris 2009-01-08T07:54:50Z 2009-01-08T07:54:50Z <pre><code>// Values ordered true/false // True/false values separated by a capital letter // Only two values allowed // --------------------------- // Limited, but could be useful public enum BooleanFormat { OneZero, YN, YesNo, TF, TrueFalse, PassFail, YepNope } public static class BooleanExtension { /// &lt;summary&gt; /// Converts the boolean value of this instance to the specified string value. /// &lt;/summary&gt; private static string ToString(this bool value, string passValue, string failValue) { return value ? passValue : failValue; } /// &lt;summary&gt; /// Converts the boolean value of this instance to a string. /// &lt;/summary&gt; /// &lt;param name="booleanFormat"&gt;A BooleanFormat value. /// Example: BooleanFormat.PassFail would return "Pass" if true and "Fail" if false.&lt;/param&gt; /// &lt;returns&gt;Boolean formatted string&lt;/returns&gt; public static string ToString(this bool value, BooleanFormat booleanFormat) { string booleanFormatString = Enum.GetName(booleanFormat.GetType(), booleanFormat); return ParseBooleanString(value, booleanFormatString); } // Parses boolean format strings, not optimized private static string ParseBooleanString(bool value, string booleanFormatString) { StringBuilder trueString = new StringBuilder(); StringBuilder falseString = new StringBuilder(); int charCount = booleanFormatString.Length; bool isTrueString = true; for (int i = 0; i != charCount; i++) { if (char.IsUpper(booleanFormatString[i]) &amp;&amp; i != 0) isTrueString = false; if (isTrueString) trueString.Append(booleanFormatString[i]); else falseString.Append(booleanFormatString[i]); } return (value == true ? trueString.ToString() : falseString.ToString()); } </code></pre> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/423555#423555 0 Answer by Jonathan C Dickinson for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) Jonathan C Dickinson 2009-01-08T07:57:16Z 2009-01-08T07:57:16Z <p>A generic Try:</p> <pre><code>class Program { static void Main(string[] args) { var z = 0; var a = 0.AsDefaultFor(() =&gt; 1 / z); Console.WriteLine(a); Console.ReadLine(); } } public static class TryExtensions { public static T AsDefaultFor&lt;T&gt;(this T @this, Func&lt;T&gt; operation) { try { return operation(); } catch { return @this; } } } </code></pre> <p>Put it up on the CodePlex project if you want.</p> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/450208#450208 6 Answer by chakrit for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) chakrit 2009-01-16T12:00:34Z 2009-01-16T12:00:34Z <p>I miss the <a href="http://msdn.microsoft.com/en-us/library/wc500chb(VS.80).aspx" rel="nofollow">Visual Basic's With statement</a> when moving to C#, so here it goes:</p> <pre><code>public static void With&lt;T&gt;(this T obj, Action&lt;T&gt; act) { act(obj); } </code></pre> <p>And here's how to use it in C#:</p> <pre><code>someVeryVeryLonggggVariableName.With(x =&gt; { x.Int = 123; x.Str = "Hello"; x.Str2 = " World!"; }); </code></pre> <p>Saves a lot of typing!</p> <p>Compare this to:</p> <pre><code>someVeryVeryLonggggVariableName.Int = 123; someVeryVeryLonggggVariableName.Str = "Hello"; someVeryVeryLonggggVariableName.Str2 = " World!"; </code></pre> <p><em>put in codeplex project</em></p> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/486879#486879 0 Answer by Tony Tanzillo for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) Tony Tanzillo 2009-01-28T08:28:03Z 2009-01-28T08:28:03Z <p>Perhaps the most useful extension methods I've written and used are here:</p> <p><a href="http://www.codeproject.com/KB/cs/fun-with-cs-extensions.aspx?msg=2838918#xx2838918xx" rel="nofollow">http://www.codeproject.com/KB/cs/fun-with-cs-extensions.aspx?msg=2838918#xx2838918xx</a></p> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/572953#572953 0 Answer by Andrew Robinson for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) Andrew Robinson 2009-02-21T13:07:23Z 2009-02-21T13:07:23Z <p>The <b>WhereIf()</b> Method</p> <pre><code>var query = dc.Reviewer .Where(r =&gt; r.FacilityID == facilityID) .WhereIf(CheckBoxActive.Checked, r =&gt; r.IsActive); public static IEnumerable&lt;TSource&gt; WhereIf&lt;TSource&gt;( this IEnumerable&lt;TSource&gt; source, bool condition, Func&lt;TSource, bool&gt; predicate) { if (condition) return source.Where(predicate); else return source; } public static IQueryable&lt;TSource&gt; WhereIf&lt;TSource&gt;( this IQueryable&lt;TSource&gt; source, bool condition, Expression&lt;Func&lt;TSource, bool&gt;&gt; predicate) { if (condition) return source.Where(predicate); else return source; } </code></pre> <p>I also added overloads for the index predicate in the Where() extension method. For more fun, add a flavor that includes an additional 'else' predicate.</p> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/572978#572978 0 Answer by Andrew Robinson for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) Andrew Robinson 2009-02-21T13:22:05Z 2009-02-21T14:27:21Z <p>Inline Conversions: I like this little pattern. Completed it for Boolean, Double and DateTime. Designed to follow the C# <em>is</em> and <em>as</em> operators.</p> <pre><code>public static Int32? AsInt32(this string s) { Int32 value; if (Int32.TryParse(s, out value)) return value; return null; } public static bool IsInt32(this string s) { return s.AsInt32().HasValue; } public static Int32 ToInt32(this string s) { return Int32.Parse(s); { </code></pre> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/833363#833363 1 Answer by Stefan Steinegger for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) Stefan Steinegger 2009-05-07T07:49:28Z 2009-05-07T07:49:28Z <p>GetMemberName allows to get the string with the name of a member with compile time safety.</p> <pre><code>public static string GetMemberName&lt;T, TResult&gt;( this T anyObject, Expression&lt;Func&lt;T, TResult&gt;&gt; expression) { return ((MemberExpression)expression.Body).Member.Name; } </code></pre> <p>Usage:</p> <pre><code>"blah".GetMemberName(x =&gt; x.Length); // returns "Length" </code></pre> <p><hr /></p> <p>It comes together with a non-extension static method if you don't have a instance:</p> <pre><code>public static string GetMemberName&lt;T, TReturn&gt;( Expression&lt;Func&lt;T, TReturn&gt;&gt; expression) where T : class { return ((MemberExpression)expression.Body).Member.Name; } </code></pre> <p>But the call doesn't look as pretty of course:</p> <pre><code>ReflectionUtility.GetMemberName((string) s =&gt; s.Length); // returns "Length" </code></pre> <p><hr /></p> <p>You can put it on Codeplex if you want.</p> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/833477#833477 29 Answer by Winston Smith for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) Winston Smith 2009-05-07T08:29:19Z 2009-05-07T08:29:19Z <pre><code>public static bool In&lt;T&gt;(this T source, params T[] list) { if(null==source) throw new ArgumentNullException("source"); return list.Contains(source); } </code></pre> <p>Allows me to replace:</p> <pre><code>if(reallyLongIntegerVariableName == 1 || reallyLongIntegerVariableName == 6 || reallyLongIntegerVariableName == 9 || reallyLongIntegerVariableName == 11) { // do something.... } and if(reallyLongStringVariableName == "string1" || reallyLongStringVariableName == "string2" || reallyLongStringVariableName == "string3") { // do something.... } and if(reallyLongMethodParameterName == SomeEnum.Value1 || reallyLongMethodParameterName == SomeEnum.Value2 || reallyLongMethodParameterName == SomeEnum.Value3 || reallyLongMethodParameterName == SomeEnum.Value4) { // do something.... } </code></pre> <p>With:</p> <pre><code>if(reallyLongIntegerVariableName.In(1,6,9,11)) { // do something.... } and if(reallyLongStringVariableName.In("string1","string2","string3")) { // do something.... } and if(reallyLongMethodParameterName.In(SomeEnum.Value1, SomeEnum.Value2, SomeEnum.Value3, SomeEnum.Value4) { // do something.... } </code></pre> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/858681#858681 4 Answer by Joel Mueller for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) Joel Mueller 2009-05-13T15:36:29Z 2009-05-13T15:44:24Z <p>It irritated me that LINQ gives me an OrderBy that takes a class implementing IComparer as an argument, but does not support passing in a simple anonymous comparer function. I rectified that.</p> <p>This class creates an IComparer from your comparer function...</p> <pre><code>/// &lt;summary&gt; /// Creates an &lt;see cref="IComparer{T}"/&gt; instance for the given /// delegate function. /// &lt;/summary&gt; internal class ComparerFactory&lt;T&gt; : IComparer&lt;T&gt; { public static IComparer&lt;T&gt; Create(Func&lt;T, T, int&gt; comparison) { return new ComparerFactory&lt;T&gt;(comparison); } private readonly Func&lt;T, T, int&gt; _comparison; private ComparerFactory(Func&lt;T, T, int&gt; comparison) { _comparison = comparison; } #region IComparer&lt;T&gt; Members public int Compare(T x, T y) { return _comparison(x, y); } #endregion } </code></pre> <p>...and these extension methods expose my new OrderBy overloads on enumerables. I doubt this works for LINQ to SQL, but it's great for LINQ to Objects.</p> <pre><code>public static class EnumerableExtensions { /// &lt;summary&gt; /// Sorts the elements of a sequence in ascending order by using a specified comparison delegate. /// &lt;/summary&gt; public static IOrderedEnumerable&lt;TSource&gt; OrderBy&lt;TSource, TKey&gt;(this IEnumerable&lt;TSource&gt; source, Func&lt;TSource, TKey&gt; keySelector, Func&lt;TKey, TKey, int&gt; comparison) { var comparer = ComparerFactory&lt;TKey&gt;.Create(comparison); return source.OrderBy(keySelector, comparer); } /// &lt;summary&gt; /// Sorts the elements of a sequence in descending order by using a specified comparison delegate. /// &lt;/summary&gt; public static IOrderedEnumerable&lt;TSource&gt; OrderByDescending&lt;TSource, TKey&gt;(this IEnumerable&lt;TSource&gt; source, Func&lt;TSource, TKey&gt; keySelector, Func&lt;TKey, TKey, int&gt; comparison) { var comparer = ComparerFactory&lt;TKey&gt;.Create(comparison); return source.OrderByDescending(keySelector, comparer); } } </code></pre> <p>You're welcome to put this on codeplex if you like.</p> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/923608#923608 0 Answer by David Yancey for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) David Yancey 2009-05-28T22:56:22Z 2009-05-30T10:26:54Z <p>With the need to work with fixed width files (EDI) I find these two extensions useful.</p> <pre><code> public static string PadStringLeftWithChar(this string myString, int Length, char _padChar) { return myString.PadLeft(Length, _padChar); } public static string PadStringRightWithChar(this string myString, int Length, char _padChar) { return myString.PadRight(Length, _padChar); } </code></pre> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/953674#953674 0 Answer by Amby for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) Amby 2009-06-04T23:53:56Z 2009-06-04T23:53:56Z <pre><code> /// &lt;summary&gt; /// Checks for an empty collection, and sends the value set in the default constructor for the desired field /// &lt;/summary&gt; /// &lt;typeparam name="T"&gt;&lt;/typeparam&gt; /// &lt;typeparam name="TResult"&gt;&lt;/typeparam&gt; /// &lt;param name="items"&gt;&lt;/param&gt; /// &lt;param name="expression"&gt;&lt;/param&gt; /// &lt;returns&gt;&lt;/returns&gt; public static TResult MinGuarded&lt;T, TResult&gt;(this IEnumerable&lt;T&gt; items, Func&lt;T, TResult&gt; expression) where T : new() { if(items.IsEmpty()) { return (new List&lt;T&gt; { new T() }).Min(expression); } return items.Min(expression); } /// &lt;summary&gt; /// Checks for an empty collection, and sends the value set in the default constructor for the desired field /// &lt;/summary&gt; /// &lt;typeparam name="T"&gt;&lt;/typeparam&gt; /// &lt;typeparam name="TResult"&gt;&lt;/typeparam&gt; /// &lt;param name="items"&gt;&lt;/param&gt; /// &lt;param name="expression"&gt;&lt;/param&gt; /// &lt;returns&gt;&lt;/returns&gt; public static TResult MaxGuarded&lt;T, TResult&gt;(this IEnumerable&lt;T&gt; items, Func&lt;T, TResult&gt; expression) where T : new() { if(items.IsEmpty()) { return (new List&lt;T&gt; { new T() }).Max(expression); } return items.Max(expression); } </code></pre> <p>I am not sure if there is a better way to do is, but this extension is very helpful i want to have control over the default values of fields in my object. For instance, if i want to control value of DateTime and want to be set as per by business logic, then i can do so in the default contructor. Otherwise, it comes out to be DateTime.MinDate.</p> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/958020#958020 3 Answer by Vasu Balakrishnan for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) Vasu Balakrishnan 2009-06-05T20:39:33Z 2009-06-05T20:39:33Z <p>I found this one helpful</p> <pre><code> public static IEnumerable&lt;T&gt; EmptyIfNull&lt;T&gt;(this IEnumerable&lt;T&gt; pSeq) { return pSeq ?? Enumerable.Empty&lt;T&gt;(); } </code></pre> <p>It removes the null check in the calling code. You could now do</p> <pre><code>MyList.EmptyIfNull().Where(....) </code></pre> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/1058256#1058256 -1 Answer by puja for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) puja 2009-06-29T13:21:06Z 2009-06-29T13:21:06Z <p>Some awesome examples! Love it!</p> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/1110456#1110456 1 Answer by Fredy Treboux for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) Fredy Treboux 2009-07-10T15:59:40Z 2009-07-10T15:59:40Z <p>Several times I found myself wanting something like, I think, Groovy's "Safe navigation".</p> <p>From <a href="http://groovy.codehaus.org/Statements" rel="nofollow">http://groovy.codehaus.org/Statements</a>:</p> <blockquote> <p>If you are walking a complex object graph and don't want to have NullPointerExceptions thrown you can use the ?. operator rather than . to perform your navigation.</p> <p>def foo = null def bar = foo?.something?.myMethod() assert bar == null</p> </blockquote> <p>So, do you think is a good idea adding an extension method for it? Something like:</p> <pre><code>obj.SafelyNavigate(x =&gt; x.SomeProperty.MaybeAMethod().AnotherProperty); </code></pre> <p>I think it would be nice even if it can also bring some trouble.</p> <p>If you think it's a good idea:</p> <ul> <li>What would you think it should happen for value types?, return default? throw?, disable it by generic constraint?.</li> <li>Swallowing NullReferenceException to implement it would be too risky?, What do you propose?, Walking the expression tree executing every call or member access seems difficult and kind of overkill (if at all possible) doesn't it?.</li> </ul> <p>Maybe it's just a bad idea :D, but I see it like something that can be useful if done right. If there's nothing like it and you think it holds some value, I may give it a shot and edit the answer afterwards.</p> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/1130145#1130145 3 Answer by Kenny Eliasson for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) Kenny Eliasson 2009-07-15T08:36:59Z 2009-07-15T08:36:59Z <p>Sometimes its handy to write out a string on a selected element in a list with a custom seperator.</p> <p>For instance if you have a <code>List&lt;Person&gt;</code> and want to loop out lastname seperated with a comma you could do this.</p> <pre><code>string result = string.Empty; foreach (var person in personList) { result += person.LastName + ", "; } result = result.Substring(0, result.Length - 2); return result; </code></pre> <p>Or you could use this handy extension method</p> <pre><code>public static string Join&lt;T&gt;(this IEnumerable&lt;T&gt; collection, Func&lt;T, string&gt; func, string separator) { return String.Join(separator, collection.Select(func).ToArray()); } </code></pre> <p>And use it like this</p> <pre><code>personList.Join(x =&gt; x.LastName, ", "); </code></pre> <p>Which produces the same result, in this case a list of lastnames seperated by a comma.</p> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/1251338#1251338 2 Answer by Chris S for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) Chris S 2009-08-09T13:02:34Z 2009-08-09T13:02:34Z <p>Below is an <a href="http://www.shrinkrays.net/code-snippets/csharp/an-extension-method-for-converting-a-byte-array-to-a-string.aspx" rel="nofollow">extension method</a> that adapts <a href="http://www.west-wind.com/WebLog/posts/197245.aspx" rel="nofollow">Rick Strahl's code</a> (and the comments too) to stop you having to guess or read the byte order mark of a byte array or text file each time you convert it to a string.</p> <p>The snippet allows you to simply do:</p> <pre><code>byte[] buffer = File.ReadAllBytes(@"C:\file.txt"); string content = buffer.GetString(); </code></pre> <p>If you find any bugs please add to the comments. Feel free to include it in the Codeplex project.</p> <pre><code>public static class Extensions { /// &lt;summary&gt; /// Converts a byte array to a string, using its byte order mark to convert it to the right encoding. /// Original article: http://www.west-wind.com/WebLog/posts/197245.aspx /// &lt;/summary&gt; /// &lt;param name="buffer"&gt;An array of bytes to convert&lt;/param&gt; /// &lt;returns&gt;The byte as a string.&lt;/returns&gt; public static string GetString(this byte[] buffer) { if (buffer == null || buffer.Length == 0) return ""; // Ansi as default Encoding encoding = Encoding.Default; /* EF BB BF UTF-8 FF FE UTF-16 little endian FE FF UTF-16 big endian FF FE 00 00 UTF-32, little endian 00 00 FE FF UTF-32, big-endian */ if (buffer[0] == 0xef &amp;&amp; buffer[1] == 0xbb &amp;&amp; buffer[2] == 0xbf) encoding = Encoding.UTF8; else if (buffer[0] == 0xfe &amp;&amp; buffer[1] == 0xff) encoding = Encoding.Unicode; else if (buffer[0] == 0xfe &amp;&amp; buffer[1] == 0xff) encoding = Encoding.BigEndianUnicode; // utf-16be else if (buffer[0] == 0 &amp;&amp; buffer[1] == 0 &amp;&amp; buffer[2] == 0xfe &amp;&amp; buffer[3] == 0xff) encoding = Encoding.UTF32; else if (buffer[0] == 0x2b &amp;&amp; buffer[1] == 0x2f &amp;&amp; buffer[2] == 0x76) encoding = Encoding.UTF7; using (MemoryStream stream = new MemoryStream()) { stream.Write(buffer, 0, buffer.Length); stream.Seek(0, SeekOrigin.Begin); using (StreamReader reader = new StreamReader(stream, encoding)) { return reader.ReadToEnd(); } } } } </code></pre> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/1394563#1394563 0 Answer by Chris S for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) Chris S 2009-09-08T15:10:25Z 2009-09-08T15:10:25Z <p>I'm always using format that wants a new line with <code>StringBuilder</code> so the very simple extension below saves a few lines of code:</p> <pre><code>public static class Extensions { public static void AppendLine(this StringBuilder builder,string format, params object[] args) { builder.AppendLine(string.Format(format, args)); } } </code></pre> <p>The alternative is <code>AppendFormat</code> in <code>StringBuilder</code> with a <code>\n</code> or Environment.NewLine.</p> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/1434207#1434207 0 Answer by John Kraft for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) John Kraft 2009-09-16T16:56:26Z 2009-09-16T16:56:26Z <p>Two little ones (some people find them silly) that I put in all my projects are:</p> <pre><code>public static bool IsNull(this object o){ return o == null; } </code></pre> <p>and</p> <pre><code>public static bool IsNullOrEmpty(this string s){ return string.IsNullOrEmpty(s); } </code></pre> <p>It makes my code so much more fluent..</p> <pre><code>if (myClassInstance.IsNull()) //... do something if (myString.IsNullOrEmpty()) //... do something </code></pre> <p>I think these would make really nice extension properties; if we ever get those.</p> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/1460681#1460681 1 Answer by Konamiman for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) Konamiman 2009-09-22T15:08:31Z 2009-09-22T15:08:31Z <p>I use these in my Silverlight projects:</p> <pre><code>public static void Show(this UIElement element) { element.Visibility = Visibility.Visible; } public static void Hide(this UIElement element) { element.Visibility = Visibility.Collapsed; } </code></pre> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/1512463#1512463 0 Answer by Unknown for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) Unknown 2009-10-03T00:54:28Z 2009-10-03T00:54:28Z <p>Shorten a string by up to x number of characters if it is more than x number of characters:</p> <pre><code> public static string Shorten(this string str, int ShortenToLength) { if (str.Length &lt;= ShortenToLength) return str; else return str.Remove(ShortenToLength) + " ..."; } </code></pre> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/1543566#1543566 1 Answer by orsogufo for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) orsogufo 2009-10-09T12:51:49Z 2009-10-09T12:51:49Z <p>A convenient way to deal with sizes: </p> <pre><code>public static class Extensions { public static int K(this int value) { return value * 1024; } public static int M(this int value) { return value * 1024 * 1024; } } public class Program { public void Main() { WSHttpContextBinding serviceMultipleTokenBinding = new WSHttpContextBinding() { MaxBufferPoolSize = 2.M(), // instead of 2097152 MaxReceivedMessageSize = 64.K(), // instead of 65536 }; } } </code></pre> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/1662833#1662833 0 Answer by Greg for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) Greg 2009-11-02T18:20:57Z 2009-11-02T18:43:38Z <p>FindControl with built-in casting:</p> <pre><code>public static T FindControl&lt;T&gt;(this Control control, string id) where T : Control { return (T)control.FindControl(id); } </code></pre> <p>It's nothing amazing, but I feel it makes for cleaner code. </p> <pre><code>// With extension method container.FindControl&lt;TextBox&gt;("myTextBox").SelectedValue = "Hello world!"; // Without extension method ((TextBox)container.FindControl("myTextBox")).SelectedValue = "Hello world!"; </code></pre> <p><em>This can be put this in the codeplex project, if so desired</em></p> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/1662892#1662892 0 Answer by Greg for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) Greg 2009-11-02T18:36:56Z 2009-11-02T18:44:14Z <p>A pattern for parsing that avoids <code>out</code> parameters:</p> <pre><code>public static bool TryParseInt32(this string input, Action&lt;int&gt; action) { int result; if (Int32.TryParse(input, out result)) { action(result); return true; } return false; } </code></pre> <p>Usage:</p> <pre><code>if (!textBox.Text.TryParseInt32(number =&gt; label.Text = SomeMathFunction(number))) label.Text = "Please enter a valid integer"; </code></pre> <p><em>This can be put this in the codeplex project, if so desired</em></p> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/1742953#1742953 0 Answer by Dan Diplo for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) Dan Diplo 2009-11-16T15:37:57Z 2009-11-16T15:37:57Z <p>In asp.net I always get fed up using FindControl and then having to cast and check if the value is null before referencing. So, I added a TryParse() method to <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.control.aspx" rel="nofollow">Control</a> that mirrors the similar ones in the framework for Int32 etc.</p> <pre><code>public static bool TryParse&lt;T&gt;(this Control control, string id, out T result) where T : Control { result = control.FindControl(id) as T; return result != null; } </code></pre> <p>So now you can do this in asp.net web-form pages:</p> <pre><code>Label lbl; if (Page.TryParse("Label1", out lbl)) { lbl.Text = "Safely set text"; } </code></pre> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/1766663#1766663 0 Answer by Juliet for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) Juliet 2009-11-19T21:21:22Z 2009-11-19T21:21:22Z <p>I find this one pretty useful:</p> <pre><code>public static class PaulaBean { private static String paula = "Brillant"; public static String GetPaula&lt;T&gt;(this T obj) { return paula; } } </code></pre> <p>You may use it on CodePlex.</p> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/1766799#1766799 0 Answer by Thomas Levesque for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) Thomas Levesque 2009-11-19T21:47:02Z 2009-11-20T18:41:45Z <p>Binary search :</p> <pre><code>public static T BinarySearch&lt;T, TKey&gt;(this IList&lt;T&gt; list, Func&lt;T, TKey&gt; keySelector, TKey key) where TKey : IComparable&lt;TKey&gt; { int min = 0; int max = list.Count; int index = 0; while (min &lt; max) { int mid = (max + min) / 2; T midItem = list[mid]; TKey midKey = keySelector(midItem); int comp = midKey.CompareTo(key); if (comp &lt; 0) { min = mid + 1; } else if (comp &gt; 0) { max = mid - 1; } else { return midItem; } } if (min == max &amp;&amp; keySelector(list[min]).CompareTo(key) == 0) { return list[min]; } throw new InvalidOperationException("Item not found"); } </code></pre> <p>Usage (assuming that the list is sorted by Id) :</p> <pre><code>var item = list.BinarySearch(i =&gt; i.Id, 42); </code></pre> <p>The fact that it throws an InvalidOperationException may seem strange, but that's what Enumerable.First does when there's no matching item.</p> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/1767863#1767863 0 Answer by Thomas Levesque for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) Thomas Levesque 2009-11-20T02:00:15Z 2009-11-20T02:00:15Z <p>This one can be quite useful :</p> <pre><code> public static IEnumerable&lt;TResult&gt; Zip&lt;TFirst, TSecond, TResult&gt;(this IEnumerable&lt;TFirst&gt; first, IEnumerable&lt;TSecond&gt; second, Func&lt;TFirst, TSecond, TResult&gt; selector) { if (first == null) throw new ArgumentNullException("first"); if (second == null) throw new ArgumentNullException("second"); if (selector == null) throw new ArgumentNullException("selector"); using (var enum1 = first.GetEnumerator()) using (var enum2 = second.GetEnumerator()) { while (enum1.MoveNext() &amp;&amp; enum2.MoveNext()) { yield return selector(enum1.Current, enum2.Current); } } } </code></pre> <p>It has been added to the <code>Enumerable</code> class in .NET 4.0, but it's handy to have it in 3.5.</p> <p>Example :</p> <pre><code>var names = new[] { "Joe", Jane, "Jack", "John" }; var ages = new[] { 42, 22, 18, 33 }; var persons = names.Zip(ages, (n, a) =&gt; new { Name = n, Age = a }); foreach (var p in persons) { Console.WriteLine("{0} is {1} years old", p.Name, p.Age); } </code></pre> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/1767920#1767920 0 Answer by RCIX for Post your extension methods for C# .Net (codeplex.com/extensionoverflow) RCIX 2009-11-20T02:18:53Z 2009-11-21T00:49:46Z <p>Aww why not! Here's an extension to IList (can't be IEnumerable because i use list specific features) for insertion sort.</p> <pre><code>internal static class SortingHelpers { /// &lt;summary&gt; /// Performs an insertion sort on this list. /// &lt;/summary&gt; /// &lt;typeparam name="T"&gt;The type of the list supplied.&lt;/typeparam&gt; /// &lt;param name="list"&gt;the list to sort.&lt;/param&gt; /// &lt;param name="comparison"&gt;the method for comparison of two elements.&lt;/param&gt; /// &lt;returns&gt;&lt;/returns&gt; public static void InsertionSort&lt;T&gt;(this IList&lt;T&gt; list, Func&lt;T, T, bool&gt; comparison) { for (int i = 2; i &lt; list.Count; i++) { for (int j = i; j &gt; 1 &amp;&amp; comparison(list[j], list[j - 1]); j--) { T tempItem = list[j]; list.RemoveAt(j); list.Insert(j - 1, tempItem); } } } } </code></pre> <p>An example:</p> <pre><code>List&lt;int&gt; list1 = { 3, 5, 1, 2, 9, 4, 6 }; list1.InsertionSort((a,b) =&gt; a &lt; b); //list is now in order of 1,2,3,4,5,6,9 </code></pre>