typecast operator is cool in c++, no such thing in c#?

c++ code:

class A
{
int dat;

public:
A(int num = 0 ) : dat(num) {}

operator int() {return dat;} // cast to int
};
link|improve this question

Next time, please try to be clear and specific when you ask your question the first time. It will help you avoid close votes. – jeffamaphone Jan 28 '10 at 17:11
@jeffamaphone, got you. – Benny Jan 28 '10 at 17:14
feedback

closed as not a real question by Mitch Wheat, Reed Copsey, Dan Herbert, George Stocker, jitter Jan 28 '10 at 23:23

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

3 Answers

up vote 4 down vote accepted

C# has! here couple examples from MSDN: Explicit:

public static explicit operator Celsius(Farenheit f)
{
    return new Celsius((5.0f/9.0f)*(f.degrees-32));
}

Implicit:

//  User-defined conversion from double to Digit
public static implicit operator Digit(double d)
{
    return new Digit(d);
}
link|improve this answer
feedback

Since both implicit and explicit cast operators are unary operators, they can be overridden using syntax like other unary operators. Here is the general syntax for the implicit conversion operator:

public static implicit operator result-type(op-type operand)
link|improve this answer
feedback

What specific feature are you looking for? For type conversion of classes, you can downgrade references to the base class by converting to type ((BaseClass)o) syntax. You can convert references to other types via Convert.ToInt32("223"); for types that implement IConvertible. What specific are you looking for?

HTH.

link|improve this answer
feedback

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