up vote 1 down vote favorite
share [g+] share [fb]

I have an Extension Method:

public static string ToDelimenatedString(this object[] array, string delaminator) {...}

The Extension is applied to reference types but not value types. I assume this is because object is nullable. How would I write the method above to target value types, is it even possible without writing it out for each value type?

Cheers,

Rich

link|improve this question

1  
are you delimenating, delaminating or delimiting your strings? :P – grenade Aug 26 '09 at 10:18
I couldn't seem to make my mind up. :) – kim3er Aug 26 '09 at 10:25
feedback

1 Answer

up vote 3 down vote accepted

Should work fine with generics:-

public static string ToDelimitedString<T>(this T[] array, string delimiter)

FYI you could [but would likely not want to] do pretty much the inverse to constrain that not to work on value types by saying:

public static string ToDelimitedString<T>(this T[] array, string delimiter)
    where T:class

BTW you'll probably also want to support IEnumerable, posiibly as an overload like this:-

public static string ToDelimitedString<T>(this IEnumerable<T> items, string delimiter)
{
    return string.Join( delimiter, items.Select( item=>item.ToString()).ToArray());
}
link|improve this answer
I must be having a bad morning, generics didn't even occur to me. Thanks for your help. – kim3er Aug 26 '09 at 10:20
NP, happy to help – Ruben Bartelink Aug 26 '09 at 10:28
feedback

Your Answer

 
or
required, but never shown

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