T
tbh
hi,
i love generic collections.
one thing I very frequently want to be able to do is take say a List<T> and
join it into a string with a certain delimiter. (in each case the underlying
T object's ToString() should be called.) for any given T I know how to do
this. i guess I can probably even figure out how to build my own MyList<T>
generic with this property.
what I'd like, though, would be for List<T> to have this property.
is this hard? easy? a bad idea?
cheers,
Tim Hanson
i love generic collections.
one thing I very frequently want to be able to do is take say a List<T> and
join it into a string with a certain delimiter. (in each case the underlying
T object's ToString() should be called.) for any given T I know how to do
this. i guess I can probably even figure out how to build my own MyList<T>
generic with this property.
what I'd like, though, would be for List<T> to have this property.
is this hard? easy? a bad idea?
cheers,
Tim Hanson