Hi,
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