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
};
|
typecast operator is cool in c++, no such thing in c#? c++ code:
| |||||
feedback
|
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.
|
C# has! here couple examples from MSDN: Explicit:
Implicit:
| |||
|
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:
| |||
|
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. | |||
|
feedback
|