Post your extension methods for C# .Net (codeplex.com/extensionoverflow) - Stack Overflow most recent 30 from stackoverflow.com2009-11-21T22:58:50Zhttp://stackoverflow.com/feeds/question/271398http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow118Post your extension methods for C# .Net (codeplex.com/extensionoverflow)bovium2008-11-07T06:47:21Z2009-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&changeSetId=17001" rel="nofollow">Implemented</a> and <a href="http://www.codeplex.com/extensionoverflow/SourceControl/FileView.aspx?itemId=288847&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&changeSetId=16839" rel="nofollow">Implemented</a> and <a href="http://www.codeplex.com/extensionoverflow/SourceControl/FileView.aspx?itemId=288847&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&changeSetId=16468" rel="nofollow">Implemented</a> and <a href="http://www.codeplex.com/extensionoverflow/SourceControl/FileView.aspx?itemId=284112&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#27140910Answer by bovium for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)bovium2008-11-07T06:59:24Z2008-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<T>(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#27141142Answer by chakrit for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)chakrit2008-11-07T07:03:41Z2009-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#27141420Answer by sontek for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)sontek2008-11-07T07:07:00Z2008-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#2714189Answer by CMS for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)CMS2008-11-07T07:09:11Z2008-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#27142112Answer by mlarsen for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)mlarsen2008-11-07T07:11:02Z2008-11-10T14:40:51Z<pre><code>public static class StringExtensions {
/// <summary>
/// Parses a string into an Enum
/// </summary>
/// <typeparam name="T">The type of the Enum</typeparam>
/// <param name="value">String value to parse</param>
/// <returns>The Enum corresponding to the stringExtensions</returns>
public static T EnumParse<T>(this string value) {
return StringExtensions.EnumParse<T>(value, false);
}
public static T EnumParse<T>(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<TestEnum>();
}
}
</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#27142317Answer by TWith2Sugars for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)TWith2Sugars2008-11-07T07:11:59Z2009-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<Type, XmlSerializer> serialisers = new Dictionary<Type, XmlSerializer>();
/// <summary>Serialises an object of type T in to an xml string</summary>
/// <typeparam name="T">Any class type</typeparam>
/// <param name="objectToSerialise">Object to serialise</param>
/// <returns>A string that represents Xml, empty oterwise</returns>
public static string XmlSerialise<T>(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;
}
/// <summary>Deserialises an xml string in to an object of Type T</summary>
/// <typeparam name="T">Any class type</typeparam>
/// <param name="xml">Xml as string to deserialise from</param>
/// <returns>A new object of type T is successful, null if failed</returns>
public static T XmlDeserialise<T>(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#27142612Answer by CMS for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)CMS2008-11-07T07:13:53Z2008-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-4Answer by sontek for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)sontek2008-11-07T07:17:47Z2008-11-07T07:17:47Z<p>Easily serialize objects into XML:</p>
<pre><code>public static string ToXml<T>(this T obj) where T : class
{
XmlSerializer s = new XmlSerializer(obj.GetType());
using (StringWriter writer = new StringWriter())
{
s.Serialize(writer, obj);
return writer.ToString();
}
}
"<root><child>foo</child</root>".ToXml<MyCustomType>();
</code></pre>
http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/271435#2714354Answer by TWith2Sugars for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)TWith2Sugars2008-11-07T07:20:43Z2008-11-11T07:14:57Z<p>Another useful one for me:</p>
<pre><code>/// <summary>
/// Converts any type in to an Int32
/// </summary>
/// <typeparam name="T">Any Object</typeparam>
/// <param name="value">Value to convert</param>
/// <returns>The integer, 0 if unsuccessful</returns>
public static int ToInt32<T>(this T value)
{
int result;
if (int.TryParse(value.ToString(), out result))
{
return result;
}
return 0;
}
/// <summary>
/// Converts any type in to an Int32 but if null then returns the default
/// </summary>
/// <param name="value">Value to convert</param>
/// <typeparam name="T">Any Object</typeparam>
/// <param name="defaultValue">Default to use</param>
/// <returns>The defaultValue if unsuccessful</returns>
public static int ToInt32<T>(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#27143751Answer by Jon Skeet for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)Jon Skeet2008-11-07T07:21:31Z2009-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 => p.Name);
var next = myComparer.ThenBy(p => 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>// <Name>Jon</Name><Age>32</Age>
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#27144431Answer by CMS for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)CMS2008-11-07T07:30:19Z2008-11-07T07:30:19Z<pre><code>public static class ComparableExtensions
{
public static bool Between<T>(this T actual, T lower, T upper) where T : IComparable<T>
{
return actual.CompareTo(lower) >= 0 && actual.CompareTo(upper) < 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#2714511Answer by Alan for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)Alan2008-11-07T07:33:37Z2008-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#2714782Answer by cfeduke for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)cfeduke2008-11-07T07:55:46Z2008-11-07T07:55:46Z<p>Comes in useful for unit testing:</p>
<pre><code>public static IList<T> Clone<T>(this IList<T> list) where T : ICloneable
{
var ret = new List<T>(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<T>(this T[] array,
Func<T,bool> determinator,
IList<T> onTrue,
IList<T> onFalse)
{
if (onTrue == null)
onTrue = new List<T>();
else
onTrue.Clear();
if (onFalse == null)
onFalse = new List<T>();
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#2715921Answer by mmiika for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)mmiika2008-11-07T09:15:04Z2008-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#27161124Answer by stiduck for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)stiduck2008-11-07T09:25:16Z2008-11-07T09:25:16Z<p>The extention method:</p>
<pre><code>public static void AddRange<T>(this List<T> 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<Int32>();
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#2716563Answer by Pure.Krome for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)Pure.Krome2008-11-07T09:54:28Z2008-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<T>(this IEnumerable<T> iEnumerable)
{
// Cheers to Joel Mueller for the bugfix. Was .Count(), now it's .Any()
return iEnumerable == null ||
!iEnumerable.Any();
}
public static IList<T> ToListIfNotNullOrEmpty<T>(this IList<T> iList)
{
return iList.IsNullOrEmpty() ? null : iList;
}
public static PagedList<T> ToPagedListIfNotNullOrEmpty<T>(this PagedList<T> 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 > 7)
{
return value.ToShortDateString();
}
switch (span.Days)
{
case 0:
switch (span.Hours)
{
case 0:
if (span.Minutes == 0)
{
return span.Seconds <= 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 > 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#2716762Answer by Omer van Kloeten for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)Omer van Kloeten2008-11-07T10:07:39Z2008-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#27188426Answer by frou for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)frou2008-11-07T12:11:41Z2008-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<T>(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#27194112Answer by Venr for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)Venr2008-11-07T12:41:24Z2008-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#2719455Answer by brisling for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)brisling2008-11-07T12:42:59Z2008-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#2736485Answer by Adam Lassek for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)Adam Lassek2008-11-07T21:10:34Z2008-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#2736652Answer by HBoss for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)HBoss2008-11-07T21:18:21Z2008-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>/// <summary>
/// Checks the Request.QueryString for the specified value and returns it, if none
/// is found then the default value is returned instead
/// </summary>
public static T QueryValue<T>(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><% if (Html.QueryValue("login", false)) { %>
<div>Welcome Back!</div>
<% } else { %>
<%-- Render the control or something --%>
<% } %>
</code></pre>
http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/274524#27452415Answer by TheSoftwareJedi for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)TheSoftwareJedi2008-11-08T08:32:33Z2008-11-08T08:32:33Z<p>My conversion extensions which allow you to do:</p>
<pre><code>int i = myString.To<int>();
</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<T>(this IConvertible obj)
{
return (T)Convert.ChangeType(obj, typeof(T));
}
public static T ToOrDefault<T>
(this IConvertible obj)
{
try
{
return To<T>(obj);
}
catch
{
return default(T);
}
}
public static bool ToOrDefault<T>
(this IConvertible obj,
out T newObj)
{
try
{
newObj = To<T>(obj);
return true;
}
catch
{
newObj = default(T);
return false;
}
}
public static T ToOrOther<T>
(this IConvertible obj,
T other)
{
try
{
return To<T>obj);
}
catch
{
return other;
}
}
public static bool ToOrOther<T>
(this IConvertible obj,
out T newObj,
T other)
{
try
{
newObj = To<T>(obj);
return true;
}
catch
{
newObj = other;
return false;
}
}
public static T ToOrNull<T>
(this IConvertible obj)
where T : class
{
try
{
return To<T>(obj);
}
catch
{
return null;
}
}
public static bool ToOrNull<T>
(this IConvertible obj,
out T newObj)
where T : class
{
try
{
newObj = To<T>(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<int>();
string a = myInt.ToOrDefault<string>();
//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<string>();
</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#27464918Answer by chakrit for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)chakrit2008-11-08T11:49:14Z2009-01-16T11:25:18Z<p>ForEach for IEnumerables</p>
<pre><code>public static class FrameworkExtensions
{
// a map function
public static void ForEach<T>(this IEnumerable<T> @enum, Action<T> mapFunction)
{
foreach (var item in @enum) mapFunction(item);
}
}
</code></pre>
<p>Naive example:</p>
<pre><code>var buttons = GetListOfButtons() as IEnumerable<Button>;
// click all buttons
buttons.ForEach(b => 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 => {
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#2746523Answer by bruno conde for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)bruno conde2008-11-08T11:53:04Z2008-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) &&
(fileInfo1.FileIndexLow == fileInfo2.FileIndexLow));
}
}
</code></pre>
http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/275303#2753031Answer by Timothy Khouri for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)Timothy Khouri2008-11-08T22:23:49Z2008-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 < 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#2756117Answer by yetapb for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)yetapb2008-11-09T04:43:44Z2008-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, @"(?<!^)(?=[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<char>.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 ) => s + c );
}
</code></pre>
<p>Example usage</p>
<pre><code>SomeEntityObject entity = DataAccessObject.GetSomeEntityObject( id );
List<PropertyInfo> properties = entity.GetType().GetPublicNonCollectionProperties( );
// wordify the property names to act as column headers for an html table or something
List<string> columns = properties.Select( p => p.Name.Capitalize( ).Wordify( ) ).ToList( );
</code></pre>
http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/275620#2756202Answer by TraumaPony for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)TraumaPony2008-11-09T04:56:32Z2008-12-01T00:15:03Z<pre><code>public static class EnumerableExtensions
{
[Pure]
public static U MapReduce<T, U>(this IEnumerable<T> enumerable, Func<T, U> map, Func<U, U, U> reduce)
{
CodeContract.RequiresAlways(enumerable != null);
CodeContract.RequiresAlways(enumerable.Count() >= 2);
CodeContract.RequiresAlways(map != null);
CodeContract.RequiresAlways(reduce != null);
return enumerable.AsParallel().Select(map).Aggregate(reduce);
}
[Pure]
public static U MapReduce<T, U>(this IList<T> list, Func<T, U> map, Func<U, U, U> reduce)
{
CodeContract.RequiresAlways(list != null);
CodeContract.RequiresAlways(list.Count >= 2);
CodeContract.RequiresAlways(map != null);
CodeContract.RequiresAlways(reduce != null);
U result = map(list[0]);
for (int i = 1; i < list.Count; i++)
{
result = reduce(result,map(list[i]));
}
return result;
}
//Parallel version; creates garbage
[Pure]
public static U MapReduce<T, U>(this IList<T> list, Func<T, U> map, Func<U, U, U> reduce)
{
CodeContract.RequiresAlways(list != null);
CodeContract.RequiresAlways(list.Count >= 2);
CodeContract.RequiresAlways(map != null);
CodeContract.RequiresAlways(reduce != null);
U[] mapped = new U[list.Count];
Parallel.For(0, mapped.Length, i =>
{
mapped[i] = map(list[i]);
});
U result = mapped[0];
for (int i = 1; i < 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#2756403Answer by Zack Elan for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)Zack Elan2008-11-09T05:17:59Z2008-11-09T05:17:59Z<p>Pythonic methods for Dictionaries:</p>
<pre><code>/// <summary>
/// If a key exists in a dictionary, return its value,
/// otherwise return the default value for that type.
/// </summary>
public static U GetWithDefault<T, U>(this Dictionary<T, U> dict, T key)
{
return dict.GetWithDefault(key, default(U));
}
/// <summary>
/// If a key exists in a dictionary, return its value,
/// otherwise return the provided default value.
/// </summary>
public static U GetWithDefault<T, U>(this Dictionary<T, U> 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>/// <summary>
/// Format a DateTime as a string that contains no characters
//// that are banned from filenames, such as ':'.
/// </summary>
/// <returns>YYYY-MM-DD_HH.MM.SS</returns>
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#2763075Answer by Michael Stum for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)Michael Stum2008-11-09T18:51:34Z2008-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>/// <summary>
/// Reverse a String
/// </summary>
/// <param name="input">The string to Reverse</param>
/// <returns>The reversed String</returns>
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#27633113Answer by Charlie for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)Charlie2008-11-09T19:17:20Z2009-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#2797891Answer by for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)2008-11-11T01:45:38Z2008-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 < 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#2802300Answer by lubos hasko for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)lubos hasko2008-11-11T07:22:07Z2008-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#2802525Answer by Jay Bazuzi for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)Jay Bazuzi2008-11-11T07:36:56Z2008-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#2803225Answer by spoon16 for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)spoon162008-11-11T08:22:26Z2008-11-11T08:33:39Z<p>This one is for MVC it adds the ability to generate a <code><label /></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><%= Html.Label("LabelId", "ForId", "Text")%>
</code></pre>
<p><strong>Output:</strong></p>
<pre><code><label id="LabelId" for="ForId">Text</label>
</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<string, object> 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<string, object> 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#2863271Answer by BFree for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)BFree2008-11-13T05:30:04Z2008-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
{
/// <summary>
/// Returns a Subset string starting at the specified start index and ending and the specified end
/// index.
/// </summary>
/// <param name="s">The string to retrieve the subset from.</param>
/// <param name="startIndex">The specified start index for the subset.</param>
/// <param name="endIndex">The specified end index for the subset.</param>
/// <returns>A Subset string starting at the specified start index and ending and the specified end
/// index.</returns>
public static string Subsetstring(this string s, int startIndex, int endIndex)
{
if (startIndex > endIndex)
{
throw new InvalidOperationException("End Index must be after Start Index.");
}
if (startIndex < 0)
{
throw new InvalidOperationException("Start Index must be a positive number.");
}
if(endIndex <0)
{
throw new InvalidOperationException("End Index must be a positive number.");
}
return s.Substring(startIndex, (endIndex - startIndex));
}
/// <summary>
/// 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.)
/// </summary>
/// <param name="s">The string to retrieve the subset from.</param>
/// <param name="startText">The Start Text to begin the Subset from.</param>
/// <param name="endText">The End Text to where the Subset goes to.</param>
/// <param name="ignoreCase">Whether or not to ignore case when comparing startText/endText to the string.</param>
/// <returns>A string containing all the text starting from startText, to the begining of endText.</returns>
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#2867532Answer by olmo for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)olmo2008-11-13T10:29:15Z2008-11-13T10:38:08Z<p>some of my best extensions (I have a loooot) : </p>
<pre><code> public static T ToEnum<T>(this string str) where T : struct
{
return (T)Enum.Parse(typeof(T), str);
}
//DayOfWeek sunday = "Sunday".ToEnum<DayOfWeek>();
public static string ToString<T>(this IEnumerable<T> collection, string separator)
{
return ToString(collection, t => t.ToString(), separator);
}
public static string ToString<T>(this IEnumerable<T> collection, Func<T, string> 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=>i*2, ", ") --> "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<T, R>(this T t, Func<T, R> func)
{
return func(t);
}
ExpensiveFindWally().Map(wally=>wally.FirstName + " " + wally.LastName)
public static R TryCC<T, R>(this T t, Func<T, R> func)
where T : class
where R : class
{
if (t == null) return null;
return func(t);
}
public static R? TryCS<T, R>(this T t, Func<T, R> func)
where T : class
where R : struct
{
if (t == null) return null;
return func(t);
}
public static R? TryCS<T, R>(this T t, Func<T, R?> func)
where T : class
where R : struct
{
if (t == null) return null;
return func(t);
}
public static R TrySC<T, R>(this T? t, Func<T, R> func)
where T : struct
where R : class
{
if (t == null) return null;
return func(t.Value);
}
public static R? TrySS<T, R>(this T? t, Func<T, R> func)
where T : struct
where R : struct
{
if (t == null) return null;
return func(t.Value);
}
public static R? TrySS<T, R>(this T? t, Func<T, R?> func)
where T : struct
where R : struct
{
if (t == null) return null;
return func(t.Value);
}
//int? bossNameLength = Departament.Boss.TryCC(b=>b.Name).TryCS(s=>s.Length);
public static T ThrowIfNullS<T>(this T? t, string mensaje)
where T : struct
{
if (t == null)
throw new NullReferenceException(mensaje);
return t.Value;
}
public static T ThrowIfNullC<T>(this T t, string mensaje)
where T : class
{
if (t == null)
throw new NullReferenceException(mensaje);
return t;
}
public static T Do<T>(this T t, Action<T> action)
{
action(t);
return t;
}
//Button b = new Button{Content = "Click"}.Do(b=>Canvas.SetColumn(b,2));
public static T TryDo<T>(this T t, Action<T> action) where T : class
{
if (t != null)
action(t);
return t;
}
public static T? TryDoS<T>(this T? t, Action<T> 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#2914026Answer by Jesse Slicer for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)Jesse Slicer2008-11-14T21:02:46Z2008-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>// <copyright file="RomanNumeralExtensions.cs" company="Always Elucidated Solution Pioneers, LLC">
// Copyright (c) 2008 Always Elucidated Solution Pioneers, LLC. All Rights Reserved.
// </copyright>
// <author>Jesse C. Slicer</author>
// <email>jslicer@spamcop.net</email>
// <date>2008-10-01</date>
// <summary>Translates Roman Numeral strings to integers and vice-versa.</summary>
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
/// <summary>
/// Holds the IsValidRomanNumeral (), ParseRomanNumeral () and
/// ToRomanNumeralString () extension methods.
/// </summary>
public static class RomanNumeralExtensions
{
#region Public Static Extension Methods
/// <summary>
/// Determines whether the specified string is a valid Roman numeral.
/// </summary>
/// <param name="value">
/// The Roman numeral string to validate.
/// </param>
/// <returns>
/// <c>true</c> if the specified string is a valid Roman numeral;
/// otherwise, <c>false</c>.
/// </returns>
public static bool
IsValidRomanNumeral (this string value)
{
return m_validRomanNumeral.IsMatch (value);
}
/// <summary>
/// Parses the Roman numeral into its integer equivalent.
/// </summary>
/// <param name="value">
/// The Roman numeral string.
/// </param>
/// <returns>
/// The integer representation of the Roman numeral.
/// </returns>
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 > 0)
{
var digit = m_romanNumerals [value [--i].ToString ()];
if (i > 0)
{
var previousDigit = m_romanNumerals [value [i - 1].ToString ()];
if (previousDigit < digit)
{
digit -= previousDigit;
i--;
}
}
total += digit;
}
return total;
}
/// <summary>
/// Converts the number to its equivalent Roman numeral string.
/// </summary>
/// <param name="value">
/// The integer to convert.
/// </param>
/// <returns>
/// The Roman numeral representation of the integer.
/// </returns>
public static string
ToRomanNumeralString (this int value)
{
const int MinValue = 1;
const int MaxValue = 3999;
if ((value < MinValue) || (value > 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 > 0)
{
sb.Append (pair.Key);
value -= pair.Value;
}
}
return sb.ToString ();
}
#endregion
#region Private Static Member Data
/// <summary>
/// The number of mappings in the dictionary.
/// </summary>
private const int NumberOfRomanNumeralMaps = 13;
/// <summary>
/// The regular expression to test the string against.
/// </summary>
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);
/// <summary>
/// The matching of Roman numeral placeholders to their integer
/// equivalents.
/// </summary>
private static readonly Dictionary<string, int> m_romanNumerals =
new Dictionary<string, int> (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#3267010Answer by Anthony for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)Anthony2008-11-28T21:15:09Z2008-11-28T21:15:09Z<p>Some extensions for working with lists:</p>
<pre><code>/// <summary>
/// Wrap an object in a list
/// </summary>
public static IList<T> InList<T>(this T item)
{
List<T> result = new List<T>();
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<T> Add<T>(this IEnumerable<T> enumerable, T newItem)
{
List<T> result = new List<T>(enumerable);
result.Add(newItem);
return result;
}
public static IEnumerable<T> Add<T>(this IEnumerable<T> enumerable, params T[] newItems)
{
List<T> result = new List<T>(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#3295610Answer by TT for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)TT2008-11-30T23:02:41Z2008-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#3300442Answer by cbp for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)cbp2008-12-01T04:24:27Z2008-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 & (int)flags) != 0;
}
public static bool AllOf(this object mask, object flags)
{
return ((int)mask & (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#3461813Answer by Rinat Abdullin for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)Rinat Abdullin2008-12-06T10:41:00Z2008-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#3573441Answer by robDean for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)robDean2008-12-10T19:46:28Z2008-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
{
/// <summary>
/// Shows or hides an action link based on the user's membership status
/// and the controller's authorize attributes
/// </summary>
/// <param name="linkText">The link text.</param>
/// <param name="action">The controller action name.</param>
/// <param name="controller">The controller name.</param>
/// <returns></returns>
public static string SecurityTrimmedActionLink(
this HtmlHelper htmlHelper,
string linkText,
string action,
string controller)
{
return SecurityTrimmedActionLink(htmlHelper, linkText, action, controller, false, null);
}
/// <summary>
/// Enables, disables or hides an action link based on the user's membership status
/// and the controller's authorize attributes
/// </summary>
/// <param name="linkText">The link text.</param>
/// <param name="action">The action name.</param>
/// <param name="controller">The controller name.</param>
/// <param name="showDisabled">if set to <c>true</c> [show link as disabled -
/// using a span tag instead of an anchor tag ].</param>
/// <param name="disabledAttributeText">Use this to add attributes to the disabled
/// span tag.</param>
/// <returns></returns>
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(
"<span{1}>{0}</span>",
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 && method.Name == actionName)
||
(attributes.Length > 0 && ((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 && actionAttributes.Count == 0)
return true;
string roles = "";
string users = "";
if (controllerAttributes.Count > 0)
{
AuthorizeAttribute attribute = controllerAttributes[0] as AuthorizeAttribute;
roles += attribute.Roles;
users += attribute.Users;
}
if (actionAttributes.Count > 0)
{
AuthorizeAttribute attribute = actionAttributes[0] as AuthorizeAttribute;
roles += attribute.Roles;
users += attribute.Users;
}
if (string.IsNullOrEmpty(roles) && string.IsNullOrEmpty(users) && 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 == "*" && (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
&& type.BaseType.Name == "Controller"
&& (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#3582592Answer by Mark Cidade for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)Mark Cidade2008-12-11T02:07:57Z2009-01-06T17:33:51Z<pre><code>static string Format( this string str
, params Expression<Func<string,object>>[] args)
{ var parameters=args.ToDictionary
( e=>string.Format("{{{0}}}",e.Parameters[0].Name)
,e=>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=>foo, bar=>2, baz=>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#3750760Answer by Mark Cidade for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)Mark Cidade2008-12-17T16:10:04Z2008-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<T>(this ICollection<T> 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<Custom>(c=>c.Name,"string",new object(),new Custom())</code> results in <code>"string {System.Object} Custom1Name"</code></p>
<pre><code>static string Format<T>( this string format
, Func<T,object> select
, params object[] args)
{ for(int i=0; i < 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#3983083Answer by Mark Maxham for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)Mark Maxham2008-12-29T18:43:37Z2008-12-29T18:43:37Z<p>Simple but nicer than "Enumerable.Range", IMHO:</p>
<pre><code> /// <summary>
/// Replace "Enumerable.Range(n)" with "n.Range()":
/// </summary>
/// <param name="n">iterations</param>
/// <returns>0..n-1</returns>
public static IEnumerable<int> Range(this int n)
{
for (int i = 0; i < n; i++)
yield return i;
}
</code></pre>
http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow/398423#3984230Answer by Mark Maxham for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)Mark Maxham2008-12-29T19:30:19Z2008-12-29T19:30:19Z<p>Equivalent to Python's Join method:</p>
<pre><code> /// <summary>
/// same as python 'join'
/// </summary>
/// <typeparam name="T">list type</typeparam>
/// <param name="separator">string separator </param>
/// <param name="list">list of objects to be ToString'd</param>
/// <returns>a concatenated list interleaved with separators</returns>
static public string Join<T>(this string separator, IEnumerable<T> 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#4145610Answer by cseg for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)cseg2009-01-05T21:15:47Z2009-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<string, object> ToDictionary(this object o)
{
var dictionary = new Dictionary<string, object>();
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<string, object> dict = dummy.ToDictionary();
</code></pre>
<p>And with an extended method as </p>
<pre><code> public static void ForEach<T>(this IEnumerable<T> source, Action<T> action)
{
foreach (T item in source)
{
action(item);
}
}
</code></pre>
<p>You can do it</p>
<pre><code>dummy.ToDictionary().ForEach((p) => 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#4234470Answer by Th3Fix3r for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)Th3Fix3r2009-01-08T06:35:26Z2009-01-08T06:49:50Z<p>Convert any string to type Int32</p>
<pre><code>print("code sample");
/// <summary>
/// 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.
/// </summary>
/// <param name="s"></param>
/// <returns>returns 0 if the conversion fails</returns>
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#4235530Answer by Chris for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)Chris2009-01-08T07:54:50Z2009-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
{
/// <summary>
/// Converts the boolean value of this instance to the specified string value.
/// </summary>
private static string ToString(this bool value, string passValue, string failValue)
{
return value ? passValue : failValue;
}
/// <summary>
/// Converts the boolean value of this instance to a string.
/// </summary>
/// <param name="booleanFormat">A BooleanFormat value.
/// Example: BooleanFormat.PassFail would return "Pass" if true and "Fail" if false.</param>
/// <returns>Boolean formatted string</returns>
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]) && 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#4235550Answer by Jonathan C Dickinson for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)Jonathan C Dickinson2009-01-08T07:57:16Z2009-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(() => 1 / z);
Console.WriteLine(a);
Console.ReadLine();
}
}
public static class TryExtensions
{
public static T AsDefaultFor<T>(this T @this, Func<T> 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#4502086Answer by chakrit for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)chakrit2009-01-16T12:00:34Z2009-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<T>(this T obj, Action<T> act) { act(obj); }
</code></pre>
<p>And here's how to use it in C#:</p>
<pre><code>someVeryVeryLonggggVariableName.With(x => {
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#4868790Answer by Tony Tanzillo for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)Tony Tanzillo2009-01-28T08:28:03Z2009-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#5729530Answer by Andrew Robinson for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)Andrew Robinson2009-02-21T13:07:23Z2009-02-21T13:07:23Z<p>The <b>WhereIf()</b> Method</p>
<pre><code>var query = dc.Reviewer
.Where(r => r.FacilityID == facilityID)
.WhereIf(CheckBoxActive.Checked, r => r.IsActive);
public static IEnumerable<TSource> WhereIf<TSource>(
this IEnumerable<TSource> source,
bool condition, Func<TSource, bool> predicate)
{
if (condition)
return source.Where(predicate);
else
return source;
}
public static IQueryable<TSource> WhereIf<TSource>(
this IQueryable<TSource> source,
bool condition, Expression<Func<TSource, bool>> 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#5729780Answer by Andrew Robinson for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)Andrew Robinson2009-02-21T13:22:05Z2009-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#8333631Answer by Stefan Steinegger for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)Stefan Steinegger2009-05-07T07:49:28Z2009-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<T, TResult>(
this T anyObject,
Expression<Func<T, TResult>> expression)
{
return ((MemberExpression)expression.Body).Member.Name;
}
</code></pre>
<p>Usage:</p>
<pre><code>"blah".GetMemberName(x => 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<T, TReturn>(
Expression<Func<T, TReturn>> 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 => 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#83347729Answer by Winston Smith for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)Winston Smith2009-05-07T08:29:19Z2009-05-07T08:29:19Z<pre><code>public static bool In<T>(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#8586814Answer by Joel Mueller for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)Joel Mueller2009-05-13T15:36:29Z2009-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>/// <summary>
/// Creates an <see cref="IComparer{T}"/> instance for the given
/// delegate function.
/// </summary>
internal class ComparerFactory<T> : IComparer<T>
{
public static IComparer<T> Create(Func<T, T, int> comparison)
{
return new ComparerFactory<T>(comparison);
}
private readonly Func<T, T, int> _comparison;
private ComparerFactory(Func<T, T, int> comparison)
{
_comparison = comparison;
}
#region IComparer<T> 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
{
/// <summary>
/// Sorts the elements of a sequence in ascending order by using a specified comparison delegate.
/// </summary>
public static IOrderedEnumerable<TSource> OrderBy<TSource, TKey>(this IEnumerable<TSource> source, Func<TSource, TKey> keySelector,
Func<TKey, TKey, int> comparison)
{
var comparer = ComparerFactory<TKey>.Create(comparison);
return source.OrderBy(keySelector, comparer);
}
/// <summary>
/// Sorts the elements of a sequence in descending order by using a specified comparison delegate.
/// </summary>
public static IOrderedEnumerable<TSource> OrderByDescending<TSource, TKey>(this IEnumerable<TSource> source, Func<TSource, TKey> keySelector,
Func<TKey, TKey, int> comparison)
{
var comparer = ComparerFactory<TKey>.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#9236080Answer by David Yancey for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)David Yancey2009-05-28T22:56:22Z2009-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#9536740Answer by Amby for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)Amby2009-06-04T23:53:56Z2009-06-04T23:53:56Z<pre><code> /// <summary>
/// Checks for an empty collection, and sends the value set in the default constructor for the desired field
/// </summary>
/// <typeparam name="T"></typeparam>
/// <typeparam name="TResult"></typeparam>
/// <param name="items"></param>
/// <param name="expression"></param>
/// <returns></returns>
public static TResult MinGuarded<T, TResult>(this IEnumerable<T> items, Func<T, TResult> expression) where T : new() {
if(items.IsEmpty()) {
return (new List<T> { new T() }).Min(expression);
}
return items.Min(expression);
}
/// <summary>
/// Checks for an empty collection, and sends the value set in the default constructor for the desired field
/// </summary>
/// <typeparam name="T"></typeparam>
/// <typeparam name="TResult"></typeparam>
/// <param name="items"></param>
/// <param name="expression"></param>
/// <returns></returns>
public static TResult MaxGuarded<T, TResult>(this IEnumerable<T> items, Func<T, TResult> expression) where T : new() {
if(items.IsEmpty()) {
return (new List<T> { 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#9580203Answer by Vasu Balakrishnan for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)Vasu Balakrishnan2009-06-05T20:39:33Z2009-06-05T20:39:33Z<p>I found this one helpful</p>
<pre><code> public static IEnumerable<T> EmptyIfNull<T>(this IEnumerable<T> pSeq)
{
return pSeq ?? Enumerable.Empty<T>();
}
</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-1Answer by puja for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)puja2009-06-29T13:21:06Z2009-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#11104561Answer by Fredy Treboux for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)Fredy Treboux2009-07-10T15:59:40Z2009-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 => 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#11301453Answer by Kenny Eliasson for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)Kenny Eliasson2009-07-15T08:36:59Z2009-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<Person></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<T>(this IEnumerable<T> collection, Func<T, string> 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 => 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#12513382Answer by Chris S for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)Chris S2009-08-09T13:02:34Z2009-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
{
/// <summary>
/// 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
/// </summary>
/// <param name="buffer">An array of bytes to convert</param>
/// <returns>The byte as a string.</returns>
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 && buffer[1] == 0xbb && buffer[2] == 0xbf)
encoding = Encoding.UTF8;
else if (buffer[0] == 0xfe && buffer[1] == 0xff)
encoding = Encoding.Unicode;
else if (buffer[0] == 0xfe && buffer[1] == 0xff)
encoding = Encoding.BigEndianUnicode; // utf-16be
else if (buffer[0] == 0 && buffer[1] == 0 && buffer[2] == 0xfe && buffer[3] == 0xff)
encoding = Encoding.UTF32;
else if (buffer[0] == 0x2b && buffer[1] == 0x2f && 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#13945630Answer by Chris S for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)Chris S2009-09-08T15:10:25Z2009-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#14342070Answer by John Kraft for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)John Kraft2009-09-16T16:56:26Z2009-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#14606811Answer by Konamiman for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)Konamiman2009-09-22T15:08:31Z2009-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#15124630Answer by Unknown for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)Unknown2009-10-03T00:54:28Z2009-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 <= 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#15435661Answer by orsogufo for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)orsogufo2009-10-09T12:51:49Z2009-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#16628330Answer by Greg for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)Greg2009-11-02T18:20:57Z2009-11-02T18:43:38Z<p>FindControl with built-in casting:</p>
<pre><code>public static T FindControl<T>(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<TextBox>("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#16628920Answer by Greg for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)Greg2009-11-02T18:36:56Z2009-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<int> 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 => 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#17429530Answer by Dan Diplo for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)Dan Diplo2009-11-16T15:37:57Z2009-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<T>(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#17666630Answer by Juliet for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)Juliet2009-11-19T21:21:22Z2009-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<T>(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#17667990Answer by Thomas Levesque for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)Thomas Levesque2009-11-19T21:47:02Z2009-11-20T18:41:45Z<p>Binary search :</p>
<pre><code>public static T BinarySearch<T, TKey>(this IList<T> list, Func<T, TKey> keySelector, TKey key)
where TKey : IComparable<TKey>
{
int min = 0;
int max = list.Count;
int index = 0;
while (min < max)
{
int mid = (max + min) / 2;
T midItem = list[mid];
TKey midKey = keySelector(midItem);
int comp = midKey.CompareTo(key);
if (comp < 0)
{
min = mid + 1;
}
else if (comp > 0)
{
max = mid - 1;
}
else
{
return midItem;
}
}
if (min == max &&
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 => 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#17678630Answer by Thomas Levesque for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)Thomas Levesque2009-11-20T02:00:15Z2009-11-20T02:00:15Z<p>This one can be quite useful :</p>
<pre><code> public static IEnumerable<TResult> Zip<TFirst, TSecond, TResult>(this IEnumerable<TFirst> first, IEnumerable<TSecond> second, Func<TFirst, TSecond, TResult> 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() && 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) => 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#17679200Answer by RCIX for Post your extension methods for C# .Net (codeplex.com/extensionoverflow)RCIX2009-11-20T02:18:53Z2009-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
{
/// <summary>
/// Performs an insertion sort on this list.
/// </summary>
/// <typeparam name="T">The type of the list supplied.</typeparam>
/// <param name="list">the list to sort.</param>
/// <param name="comparison">the method for comparison of two elements.</param>
/// <returns></returns>
public static void InsertionSort<T>(this IList<T> list, Func<T, T, bool> comparison)
{
for (int i = 2; i < list.Count; i++)
{
for (int j = i; j > 1 && 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<int> list1 = { 3, 5, 1, 2, 9, 4, 6 };
list1.InsertionSort((a,b) => a < b);
//list is now in order of 1,2,3,4,5,6,9
</code></pre>