vote up 122 vote down star
269

Let's make a list of answers where you post your excellent and favorite extension methods.

The requirement is that the full code must be posted and a example and an explanation on how to use it.

Based on the high interest in this topic I have setup an Open Source Project called extensionoverflow on Codeplex.

Please mark your answers with an acceptance to put the code in the Codeplex project.

Please post the full sourcecode and not a link.

Codeplex News:

11.11.2008 XmlSerialize / XmlDeserialize is now Implemented and Unit Tested.

11.11.2008 There is still room for more developers. ;-) Join NOW!

11.11.2008 Third contributer joined ExtensionOverflow, welcome to BKristensen

11.11.2008 FormatWith is now Implemented and Unit Tested.

09.11.2008 Second contributer joined ExtensionOverflow. welcome to chakrit.

09.11.2008 We need more developers. ;-)

09.11.2008 ThrowIfArgumentIsNull in now Implemented and Unit Tested on Codeplex.

flag
show 17 more comments

82 Answers

prev 1 2 3
vote up 0 vote down

A generic Try:

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;
        }
    }
}

Put it up on the CodePlex project if you want.

link|flag
vote up 0 vote down

Perhaps the most useful extension methods I've written and used are here:

http://www.codeproject.com/KB/cs/fun-with-cs-extensions.aspx?msg=2838918#xx2838918xx

link|flag
vote up 0 vote down

The WhereIf() Method

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; 
}

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.

link|flag
vote up 0 vote down

Inline Conversions: I like this little pattern. Completed it for Boolean, Double and DateTime. Designed to follow the C# is and as operators.

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);
{
link|flag
show 2 more comments
vote up 0 vote down

With the need to work with fixed width files (EDI) I find these two extensions useful.

    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);
    }
link|flag
vote up 0 vote down
 /// <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);
    }

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.

link|flag
vote up 0 vote down

I'm always using format that wants a new line with StringBuilder so the very simple extension below saves a few lines of code:

public static class Extensions
{
    public static void AppendLine(this StringBuilder builder,string format, params object[] args)
    {
    	builder.AppendLine(string.Format(format, args));
    }
}

The alternative is AppendFormat in StringBuilder with a \n or Environment.NewLine.

link|flag
vote up 0 vote down

Two little ones (some people find them silly) that I put in all my projects are:

public static bool IsNull(this object o){
  return o == null;
}

and

public static bool IsNullOrEmpty(this string s){
  return string.IsNullOrEmpty(s);
}

It makes my code so much more fluent..

if (myClassInstance.IsNull()) //... do something

if (myString.IsNullOrEmpty()) //... do something

I think these would make really nice extension properties; if we ever get those.

link|flag
show 1 more comment
vote up 0 vote down

Shorten a string by up to x number of characters if it is more than x number of characters:

    public static string Shorten(this string str, int ShortenToLength)
    {
        if (str.Length <= ShortenToLength)
            return str;
        else
            return str.Remove(ShortenToLength) + " ...";
    }
link|flag
show 1 more comment
vote up 0 vote down

FindControl with built-in casting:

public static T FindControl<T>(this Control control, string id) where T : Control
{
    return (T)control.FindControl(id);
}

It's nothing amazing, but I feel it makes for cleaner code.

// With extension method
container.FindControl<TextBox>("myTextBox").SelectedValue = "Hello world!";

// Without extension method
((TextBox)container.FindControl("myTextBox")).SelectedValue = "Hello world!";

This can be put this in the codeplex project, if so desired

link|flag
vote up 0 vote down

A pattern for parsing that avoids out parameters:

public static bool TryParseInt32(this string input, Action<int> action)
{
    int result;
    if (Int32.TryParse(input, out result))
    {
        action(result);
        return true;
    }
    return false;
}

Usage:

if (!textBox.Text.TryParseInt32(number => label.Text = SomeMathFunction(number)))
    label.Text = "Please enter a valid integer";

This can be put this in the codeplex project, if so desired

link|flag
vote up 0 vote down

This one can be quite useful :

    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);
            }
        }
    }

It has been added to the Enumerable class in .NET 4.0, but it's handy to have it in 3.5.

Example :

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);
}
link|flag
vote up 0 vote down

Binary search :

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");
}

Usage (assuming that the list is sorted by Id) :

var item = list.BinarySearch(i => i.Id, 42);

The fact that it throws an InvalidOperationException may seem strange, but that's what Enumerable.First does when there's no matching item.

link|flag
vote up 0 vote down

In the recent searches section on my blog stats page, I had removed all duplicates, but needed a way to remove nearly-duplicate lines. I'd get tons of similar but not quite the same Google queries.

I ended up using an anonymous type instead of a dictionary, but wanted a way to create a List of that anonymous type. You can't do that, but you can create a List<dynamic> in .NET 4.0 :)

Mostly I like it because I effectively get a List<AnonymousType#1>().

  /// <summary>Remove extraneous entries for common word permutations</summary>
  /// <param name="input">Incoming series of words to be filtered</param>
  /// <param name="MaxIgnoreLength">Words this long or shorter will not count as duplicates</param>
  /// <param name="words2">Instance list from BuildInstanceList()</param>
  /// <returns>Filtered list of lines from input, based on filter info in words2</returns>
  private static List<string> FilterNearDuplicates(List<string> input, int MaxIgnoreLength, List<dynamic> words2)
  {
   List<string> output = new List<string>();
   foreach (string line in input)
   {
    int Dupes = 0;
    foreach (string word in line.Split(new char[] { ' ', ',', ';', '\\', '/', ':', '\"', '\r', '\n', '.' })
     .Where(p => p.Length > MaxIgnoreLength)
     .Distinct())
    {
     int Instances = 0;
     foreach (dynamic dyn in words2)
      if (word == dyn.Word)
      {
       Instances = dyn.Instances;
       if (Instances > 1)
        Dupes++;
       break;
      }
    }
    if (Dupes == 0)
     output.Add(line);
   }
   return output;
  }
  /// <summary>Builds a list of words and how many times they occur in the overall list</summary>
  /// <param name="input">Incoming series of words to be counted</param>
  /// <returns></returns>
  private static List<dynamic> BuildInstanceList(List<string> input)
  {
   List<dynamic> words2 = new List<object>();
   foreach (string line in input)
    foreach (string word in line.Split(new char[] { ' ', ',', ';', '\\', '/', ':', '\"', '\r', '\n', '.' }))
    {
     if (string.IsNullOrEmpty(word))
      continue;
     else if (ExistsInList(word, words2))
      for (int i = words2.Count - 1; i >= 0; i--)
      {
       if (words2[i].Word == word)
        words2[i] = new { Word = words2[i].Word, Instances = words2[i].Instances + 1 };
      }
     else words2.Add(new { Word = word, Instances = 1 });
    }

   return words2;
  }
  /// <summary>Determines whether a dynamic Word object exists in a List of this dynamic type.</summary>
  /// <param name="word">Word to look for</param>
  /// <param name="words">Word dynamics to search through</param>
  /// <returns>Indicator of whether the word exists in the list of words</returns>
  private static bool ExistsInList(string word, List<dynamic> words)
  {
   foreach (dynamic dyn in words)
    if (dyn.Word == word)
     return true;
   return false;
  }
 }
link|flag
vote up 0 vote down

Wraps a string every n chars.

	public static string WrapAt(this string str, int WrapPos)
	{
		if (string.IsNullOrEmpty(str))
			throw new ArgumentNullException("str", "Cannot wrap a null string");
		str = str.Replace("\r", "").Replace("\n", "");

		if (str.Length <= WrapPos)
			return str;

		for (int i = str.Length; i >= 0; i--)
			if (i % WrapPos == 0 && i > 0 && i != str.Length)
				str = str.Insert(i, "\r\n");
		return str;
	}
link|flag
vote up 0 vote down

Gets the root domain of a URI.

/// Gets the root domain of any URI /// URI to get root domain of /// Root domain with TLD public static string GetRootDomain(this System.Uri uri) { if (uri == null) return null;

string Domain = uri.Host; while (System.Text.RegularExpressions.Regex.Matches(Domain, @"[.]").Count > 1) Domain = Domain.Substring(Domain.IndexOf('.') + 1); Domain = Domain.Substring(0, Domain.IndexOf('.')); return Domain; }

link|flag
vote up 0 vote down

Some DataSet/DataRow extensions to make working with db results a little simpler

Just use .Field("fieldname") on the DataRow and it will cast it if it can, optional default can be included.

Also .HasRows() on the DataSet so you don't need to check for the existence of a table and rows.

Example:

using (DataSet ds = yourcall()) 
{
  if (ds.HasRows())
  {
     foreach (DataRow dr in ds.Tables[0].Rows)
     {
        int id = dr.Field<int>("ID");
        string name = dr.Field<string>("Name");
        string Action = dr.Field<string>("Action", "N/A");
     }
  }
}

Code:

using System;
using System.Data;

public static class DataSetExtensions
{
    public static T Field<T>(this DataRow row, string columnName, T defaultValue)
    {
    	try
    	{
    		return row.Field<T>(columnName);
    	}
    	catch
    	{
    		return defaultValue;
    	}
    }

    public static T Field<T>(this DataRow row, string columnName)
    {
    	if (row[columnName] == null)
    		throw new NullReferenceException(columnName + " does not exist in DataRow");

    	string value = row[columnName].ToString();

    	if (typeof(T) == "".GetType())
    	{
    		return (T)Convert.ChangeType(value, typeof(T));
    	}
    	else if (typeof(T) == 0.GetType())
    	{
    		return (T)Convert.ChangeType(int.Parse(value), typeof(T));
    	}
    	else if (typeof(T) == false.GetType())
    	{
    		return (T)Convert.ChangeType(bool.Parse(value), typeof(T));
    	}
    	else if (typeof(T) == DateTime.Now.GetType())
    	{
    		return (T)Convert.ChangeType(DateTime.Parse(value), typeof(T));
    	}
    	else if (typeof(T) == new byte().GetType())
    	{
    		return (T)Convert.ChangeType(byte.Parse(value), typeof(T));
    	}
    	else if (typeof(T) == new float().GetType())
    	{
    		return (T)Convert.ChangeType(float.Parse(value), typeof(T));
    	}
    	else
    	{
    		throw new ArgumentException(string.Format("Cannot cast '{0}' to '{1}'.", value, typeof(T).ToString()));
    	}
    }

    public static bool HasRows(this DataSet dataSet) 
    {
    	return (dataSet.Tables.Count > 0 && dataSet.Tables[0].Rows.Count > 0);
    }
}
link|flag
vote up 0 vote down

I'm using this one quite a lot...

Original code:

if (guid != Guid.Empty) return guid;
else return Guid.NewGuid();

New code:

return guid.NewGuidIfEmpty();

Extension method:

public static Guid NewGuidIfEmpty(this Guid uuid)
{
    return (uuid != Guid.Empty ? uuid : Guid.NewGuid());
}
link|flag
show 2 more comments
vote up 0 vote down

Aww why not! Here's an extension to IList (can't be IEnumerable because i use list specific features) for insertion sort.

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, Comparison<T> comparison)
    {
        for (int i = 2; i < list.Count; i++)
        {
            for (int j = i; j > 1 && comparison(list[j], list[j - 1]) < 0; j--)
            {
                T tempItem = list[j];
                list.RemoveAt(j);
                list.Insert(j - 1, tempItem);
            }
        }
    }
}

An example:

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
link|flag
show 7 more comments
vote up 0 vote down

Some handy string helpers:

Usage:

I hate unwanted spaces trailing or leading strings and since string can take on a null value, it can be tricky, so i use this:

public bool IsGroup { get { return !this.GroupName.IsNullOrTrimEmpty(); } }

Here is another extention method that i use for a new validation framework i'm trialing. You can see the regex extensions within that help clean otherwise messy regex:

    public static bool IsRequiredWithLengthLessThanOrEqualNoSpecial(this String str, int length)
    {
        return !str.IsNullOrTrimEmpty() &&
            str.RegexMatch(
                @"^[- \r\n\\\.!:*,@$%&""?\(\)\w']{1,{0}}$".RegexReplace(@"\{0\}", length.ToString()),
                RegexOptions.Multiline) == str;
    }

Source:

public static class StringHelpers
{
    /// <summary>
    /// Same as String.IsNullOrEmpty except that
    /// it captures the Empty state for whitespace
    /// strings by Trimming first.
    /// </summary>
    public static bool IsNullOrTrimEmpty(this String helper)
    {
        if (helper == null)
            return true;
        else
            return String.Empty == helper.Trim();
    }

    public static int TrimLength(this String helper)
    {
        return helper.Trim().Length;
    }

    /// <summary>
    /// Returns the matched string from the regex pattern. The
    /// groupName is for named group match values in the form (?<name>group).
    /// </summary>
    public static string RegexMatch(this String helper, string pattern, RegexOptions options, string groupName)
    {
        if (groupName.IsNullOrTrimEmpty())
            return Regex.Match(helper, pattern, options).Value;
        else
            return Regex.Match(helper, pattern, options).Groups[groupName].Value;
    }

    public static string RegexMatch(this String helper, string pattern)
    {
        return RegexMatch(helper, pattern, RegexOptions.None, null);
    }

    public static string RegexMatch(this String helper, string pattern, RegexOptions options)
    {
        return RegexMatch(helper, pattern, options, null);
    }

    public static string RegexMatch(this String helper, string pattern, string groupName)
    {
        return RegexMatch(helper, pattern, RegexOptions.None, groupName);
    }

    /// <summary>
    /// Returns true if there is a match from the regex pattern
    /// </summary>
    public static bool IsRegexMatch(this String helper, string pattern, RegexOptions options)
    {
        return helper.RegexMatch(pattern, options).Length > 0;
    }

    public static bool IsRegexMatch(this String helper, string pattern)
    {
        return helper.IsRegexMatch(pattern, RegexOptions.None);
    }

    /// <summary>
    /// Returns a string where matching patterns are replaced by the replacement string.
    /// </summary>
    /// <param name="pattern">The regex pattern for matching the items to be replaced</param>
    /// <param name="replacement">The string to replace matching items</param>
    /// <returns></returns>
    public static string RegexReplace(this String helper, string pattern, string replacement, RegexOptions options)
    {
        return Regex.Replace(helper, pattern, replacement, options);
    }

    public static string RegexReplace(this String helper, string pattern, string replacement)
    {
        return Regex.Replace(helper, pattern, replacement, RegexOptions.None);
    }
}

I like to do a lot of regex so i consider these easier than adding the using statement and the extra code to handle named groups.

link|flag
vote up -1 vote down

Some awesome examples! Love it!

link|flag
vote up -4 vote down

Easily serialize objects into XML:

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>();
link|flag
show 2 more comments
prev 1 2 3

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.