vote up 1 vote down star

I'm sure I've done this before, but can't find any example of it! Grrr...

For example, I want to convert an IList<T> into a BindingList<T>:

public class ListHelper
{
    public static BindingList<T> ToBindingList(IList<T> data)
    {
        BindingList<T> output = new BindingList<T>();

        foreach (T item in data)
            output.Add(item);

        return output;
    }
}
flag

75% accept rate
What's the actual question here? Yes, generic methods are fine in non-generic classes (System.Linq.Enumerable being probably the biggest example). – Jon Skeet Jan 8 at 8:53
@Jon - he missed the <T> in ToBindingList – Marc Gravell Jan 8 at 8:56

3 Answers

vote up 6 vote down check

ToBindingList<T>(...)

	public class ListHelper
	{
		public static BindingList<T> ToBindingList<T>(IList<T> data)
		{
			BindingList<T> output = new BindingList<T>();

			foreach (T item in data)
				output.Add(item);

			return output;
		}
	}
link|flag
vote up 4 vote down

You can do this by extension method and it would be better.

public static class Extensions
{
    public static BindingList<T> ToBindingList<T>(this IList<T> list) 
    {
        BindingList<T> bindingList = new BindingList<T>();

        foreach (var item in list)
        {
            bindingList.Add(item);
        }

        return bindingList;
    }
}
link|flag
That's the way I'd do it... maybe even from IEnumerable<T> (sinc all you do is foreach) – Marc Gravell Jan 8 at 8:57
Yes, IEnumerable would be better. – yapiskan Jan 8 at 8:59
True. Thanks for tips – John Paul Jones Jan 8 at 9:03
vote up 4 vote down

Wouldn't this be simpler?

public static class Extensions
{
    public static BindingList<T> ToBindingList<T>(this IList<T> list)
    {
        return new BindingList<T>(list);
    }
}

It's so simple that we don't need an extension method ...

Am I missing something?

link|flag
Sure, this is better. – yapiskan Jan 8 at 11:31

Your Answer

Get an OpenID
or

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