vote up 118 vote down star
263

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

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

77 Answers

vote up 3 vote down

Simple but nicer than "Enumerable.Range", IMHO:

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

I found this one helpful

    public static IEnumerable<T> EmptyIfNull<T>(this IEnumerable<T> pSeq)
    {
        return pSeq ?? Enumerable.Empty<T>();
    }

It removes the null check in the calling code. You could now do

MyList.EmptyIfNull().Where(....)
link|flag
vote up 3 vote down

Sometimes its handy to write out a string on a selected element in a list with a custom seperator.

For instance if you have a List<Person> and want to loop out lastname seperated with a comma you could do this.

string result = string.Empty;
foreach (var person in personList) {
   result += person.LastName + ", ";
}
result = result.Substring(0, result.Length - 2);
return result;

Or you could use this handy extension method

public static string Join<T>(this IEnumerable<T> collection, Func<T, string> func, string separator)
{
  return String.Join(separator, collection.Select(func).ToArray());
}

And use it like this

personList.Join(x => x.LastName, ", ");

Which produces the same result, in this case a list of lastnames seperated by a comma.

link|flag
vote up 2 vote down

Comes in useful for unit testing:

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

A series of these like TWith2Sugars, alternate shortened syntax:

public static long? ToNullableInt64(this string val)
{
    long ret;
    return Int64.TryParse(val, out ret) ? ret : new long?();
}

And finally this - is there something already in the BCL that does the following?

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

http://www.codeplex.com/linqext/

link|flag
vote up 2 vote down

I use these in my web projects, mainly with MVC. I have a handful of these written for the ViewData and TempData

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

That way I can write something like...

<% if (Html.QueryValue("login", false)) { %>
    <div>Welcome Back!</div>

<% } else { %>
    <%-- Render the control or something --%>

<% } %>
link|flag
show 2 more comments
vote up 2 vote down

some of my best extensions (I have a loooot) :

    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"

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:

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

Hope it doesn't look like comming from Mars :)

link|flag
show 1 more comment
vote up 2 vote down
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;
    }

}
link|flag
show 2 more comments
vote up 2 vote down

I like these methods for dealing with enums that have the Flags attribute set:

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.

Example usage:

var options = SomeOptions.OptionA;
options = options.SetOn(OptionB);
options = options.SetOn(OptionC);

if (options.AnyOf(SomeOptions.OptionA | SomeOptions.OptionB))
{
etc.

The original methods were from this article: http://www.codeproject.com/KB/cs/masksandflags.aspx?display=Print I just converted them to extension methods.

The one problem with them though is that the parameters of object type, which means that all objects end up being extended with these methods, whereas ideally they should only apply to enums.

link|flag
1  
Problems with these extensions: * All objects are extended (signature pollution) * boxing/unboxing overhead * not all enums derive from int, there could be byte and long as well – Rinat Abdullin Dec 7 '08 at 9:02
show 1 more comment
vote up 2 vote down
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();
 }

With the above extension you can write this:

var str = "{foo} {bar} {baz}".Format(foo=>foo, bar=>2, baz=>new object());

and you'll get "foo 2 System.Object".

link|flag
1  
Performance is horrible with Compile(). – Rinat Abdullin Dec 16 '08 at 6:31
show 2 more comments
vote up 2 vote down

Below is an extension method that adapts Rick Strahl's code (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.

The snippet allows you to simply do:

byte[] buffer = File.ReadAllBytes(@"C:\file.txt");
string content = buffer.GetString();

If you find any bugs please add to the comments. Feel free to include it in the Codeplex project.

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();
    		}
    	}
    }
}
link|flag
show 2 more comments
vote up 1 vote down

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.):

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

Example:

Settings.Default.LoadFrom(new NameValueCollection() { { "Setting1", "Value1" }, { "Setting2", "Value2" } });
link|flag
show 1 more comment
vote up 1 vote down

I like these NUnit Assert extensions: http://svn.caffeine-it.com/openrasta/trunk/src/Rasta.Testing/AssertExtensions.cs

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

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):

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...
    }
}
link|flag
vote up 1 vote down

Here is another ThrowIfNull implementation:


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


It's not as efficient as the other impementations, but has cleaner usage:



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


Changing the parameters to int? will also work.

-bill

link|flag
show 2 more comments
vote up 1 vote down

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.

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...

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

Usage:

 string s = "This is a tester for my cool extension method!!";
        s = s.Subsetstring("tester", "cool",true);

Output: "tester for my "

link|flag
vote up 1 vote down

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 Maarten Balliauw for the idea and the code bits that showed me the way :)

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

    }
}
link|flag
vote up 1 vote down

GetMemberName allows to get the string with the name of a member with compile time safety.

public static string GetMemberName<T, TResult>(
    this T anyObject, 
    Expression<Func<T, TResult>> expression)
{
    return ((MemberExpression)expression.Body).Member.Name;
}

Usage:

"blah".GetMemberName(x => x.Length); // returns "Length"


It comes together with a non-extension static method if you don't have a instance:

public static string GetMemberName<T, TReturn>(
    Expression<Func<T, TReturn>> expression)
    where T : class
{
    return ((MemberExpression)expression.Body).Member.Name;
}

But the call doesn't look as pretty of course:

ReflectionUtility.GetMemberName((string) s => s.Length); // returns "Length"


You can put it on Codeplex if you want.

link|flag
vote up 1 vote down

Several times I found myself wanting something like, I think, Groovy's "Safe navigation".

From http://groovy.codehaus.org/Statements:

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.

def foo = null def bar = foo?.something?.myMethod() assert bar == null

So, do you think is a good idea adding an extension method for it? Something like:

obj.SafelyNavigate(x => x.SomeProperty.MaybeAMethod().AnotherProperty);

I think it would be nice even if it can also bring some trouble.

If you think it's a good idea:

  • What would you think it should happen for value types?, return default? throw?, disable it by generic constraint?.
  • 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?.

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.

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

I use these in my Silverlight projects:

public static void Show(this UIElement element)
{
    element.Visibility = Visibility.Visible;
}

public static void Hide(this UIElement element)
{
    element.Visibility = Visibility.Collapsed;
}
link|flag
vote up 1 vote down

A convenient way to deal with sizes:

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

Some extensions for working with lists:

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

use eg:

myList = someObject.InList();

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:

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

use e.g.

  someEnumeration = someEnumeration.Add(newItem);

Other variations of this are possible - e.g.

  someEnumeration = someEnumeration.Add(otherEnumeration);
link|flag
show 1 more comment
vote up 0 vote down

These extension methods are pretty useful for me when parsing form input before putting into the database

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;
}
link|flag
vote up 0 vote down
  • For adding multiple elements to a collection that doesn't have AddRange, e.g., collection.Add(item1, item2, itemN);

    static void Add<T>(this ICollection<T> coll, params T[] items)
     { foreach (var item in items) coll.Add(item);
     }
    
  • The following is like string.Format() but with custom string representation of arguments, e.g., "{0} {1} {2}".Format<Custom>(c=>c.Name,"string",new object(),new Custom()) results in "string {System.Object} Custom1Name"

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

Equivalent to Python's Join method:

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

I use this extension method usually with anonymous types to get a dictionary ala ruby

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

You can use it

 var dummy = new { color = "#000000", width = "100%", id = "myid" };
 Dictionary<string, object> dict = dummy.ToDictionary();

And with an extended method as

    public static void ForEach<T>(this IEnumerable<T> source, Action<T> action)
    {
        foreach (T item in source)
        {
            action(item);
        }
    }

You can do it

dummy.ToDictionary().ForEach((p) => Console.Write("{0}='{1}' ", p.Key, p.Value));

Output

color='#000000' width='100%' id='myid'

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

Convert any string to type Int32

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

SAMPLE USE: string s = "999";

int i = s.ToInt32();

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

Your Answer

Get an OpenID
or

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