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
?
You will have to overload the cast operator.
public class Foo
{
public Foo( double d )
{
this.X = d;
}
public double X
{
get;
private set;
}
public static implicit operator Foo( double d )
{
return new Foo (d);
}
public static explicit operator double( Foo f )
{
return f.X;
}
}
Create an explicit or implicit conversion:
public class Foo
{
public static explicit operator int(Foo instance)
{
return 0;
}
public static implicit operator double(Foo instance)
{
return 0;
}
}
The difference is, with explicit conversions you will have to do the type cast yourself:
int i = (int) new Foo();
and with implicit conversions, you can just "assign" things:
double d = new Foo();
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)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With