How can I make class, that can be cast to DateTime. But I need to cast my class, when it packed. For example:
object date1 = new MyDateTime();
DateTime date2 = (DateTime)date1;
I need directly this working example.
I know how to do it, but my way will work without packing. I'm not sure is there way to do it.
Please, help.
PS. I need cast directly object to DateTime. So, MyDateTime have to be packed before. Explicit works well, but it doesn't help if you have packed object. And it have to cast just using ordinary casting like
(DateTime) (object) MyDateTime
You could use
Instead of a direct cast, I would create an extension method that performs the required steps to complete the conversion. Some sort of conversion is necessary, because DateTime can't be inherited from, so a direct cast will be impossible.
In this way, you would use the code like so:
or
What you appear to be after is inheritance, being able to "store" a derived class instance in a variable of the base type like so:
The fact that it is a
FileStream
under the hood is not lost just because you are pointing to it with theStream
goggles on.DateTime
is astruct
, andstruct
inheritance is not supported - so this is not possible.An alternative is the
explicit
keyword for user-defined conversions (syntactically looking like casts). This allows you to at least interchange between your class andDateTime
with more sugar.http://msdn.microsoft.com/en-us/library/xhbhezf4(v=vs.71).aspx
This could look like:
You can do the same with the counterpart
implicit
keyword:That then lets you do the "casting" implicitly:
Another alternative is to wrap
DateTime
with your own adapter class that internally uses aDateTime
and then inherit from this class to createMyDateTime
. Then instead of usingDateTime
in your code base, you use this adapter class.I've seen similar things with
SmartDateTime
style classes where theDateTime
has a better understanding of nulls and if it was set.You'd need to write an explicit cast operator on your MyDateTime class that calls into one of the constructors on Datetime. Here's an example.