vote up 1 vote down star

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 ?

flag

What do you expect it to do? I.o.w, what does Foo look like? – Henk Holterman Jul 2 at 10:21

5 Answers

vote up 8 vote down check

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;
        }

    }
link|flag
Can you please explain the use of implicit and explicit in your answer ? Thanks. – Andreas Grech Jul 2 at 10:16
Plz see MSDN: msdn.microsoft.com/en-us/library/… msdn.microsoft.com/en-us/library/… (I would always prefer explicit cast operators) – Frederik Gheysels Jul 2 at 10:41
Excellent, exactly what I was look for in the answer. Cheers. – Andreas Grech Jul 2 at 13:24
vote up 0 vote down

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

link|flag
vote up 4 vote down

You need to define explicit or implicit casting:

public class Foo
{
    public static implicit operator int(Foo d)
    {
        return d.SomeIntProperty;
    }

    // ...
link|flag
vote up 0 vote down

Another possibility is to write a Parse and TryParse extension method for your class.

You'd then write your code as follows:

var x = new Foo();
var y = int.Parse(x);
link|flag
2  
why would you write it as an extension method, and not as a regular member method ? It's his class, so he has control over it. – Frederik Gheysels Jul 2 at 9:52
1  
Because when you have a hammer every problem is a nail. – Martin Brown Jul 2 at 10:05
@Mark: Even if you did write an extension method, you couldn't then use it with "var y = int.Parse(x);" because extension methods only apply to instances. You'd have to do something like "var y = x.ParseToInt();" instead, and in that case why not just put the ParseToInt method in the class itself, as Frederik says. – Luke Jul 2 at 10:16
Without knowing more about his Foo class I simply offered another possibility. @Martin Brown: Are you suggesting that the other Try and TryParse methods are hammers? No they fit their paradigm of dealing with strings. I can't really infer much of problem domain. @Frederik: He has just as much control with an extension method as he does with his own class. – Mark Jul 2 at 11:59
1  
No Mark, Martin is suggesting that extension methods are hammers. :) The problem with an extension method, is that you are scattering logic all over the place and, that the extension method will not be directly displayed by intellisense, if the namespace where the extension method is defined, is not 'used'. Since you have control over the foo class, it is better to write the TryParse method as a regular member method, instead of an extension method – Frederik Gheysels Jul 2 at 12:16
show 1 more comment
vote up 3 vote down

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)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.