For some reason I need to cast/convert a DateTime into one of many custom objects
This proves to be very difficult to do in a nice generic fashion.
I am thinking of implementing an extension method on object or perhaps extending DateTimeConverter.
But then what would be the generic way to handle this, I have an object and a destination type and at the moment I am using System.ConvertTo(..) but this is clearly limited because it only supports converting to .NET types and cant be extended.
Any ideas?