Is it possible to cast a custom class to a value type?
Here's an example:
var x = new Foo();
var y = (int) x; //Does not compile
Is it possible to make the above happen? Do I need to overload something in Foo ?
|
|
Is it possible to cast a custom class to a value type? Here's an example:
Is it possible to make the above happen? Do I need to overload something in
|
||
|
|
|
You will have to overload the cast operator.
|
||||||
|
|
|
I would suggest you implement the IConvertible interface as that is designed to handle this. See http://msdn.microsoft.com/en-us/library/system.iconvertible.aspx |
||
|
|
|
|
You need to define explicit or implicit casting:
|
||
|
|
|
|
Another possibility is to write a Parse and TryParse extension method for your class. You'd then write your code as follows:
|
||||||||||||||||
|
|
|
Create an explicit or implicit conversion:
The difference is, with explicit conversions you will have to do the type cast yourself:
and with implicit conversions, you can just "assign" things:
MSDN has this to say: "By eliminating unnecessary casts, implicit conversions can improve source code readability. However, because implicit conversions do not require programmers to explicitly cast from one type to the other, care must be taken to prevent unexpected results. In general, implicit conversion operators should never throw exceptions and never lose information so that they can be used safely without the programmer's awareness. If a conversion operator cannot meet those criteria, it should be marked explicit." (Emphasis mine) |
|||
|
|