vote up 0 vote down star

I read somewhere that older VB .net (pre VB .NET 2005?) couldn't use overloaded operators in a C# class. Is it true for overloaded cast operators?

Either way do you guys think it's a disadvantage for a C# class library not to include them and arithmetic methods as actual methods for other languages, like:

ToDouble
ToFloat
FromDouble
Add
Subtract
Multiply
Divide
...
flag

56% accept rate

1 Answer

vote up 1 vote down

VB people are used to doing CType (much more than DirectCast) so instead of providing extra methods make sure you support CType (look in Reflector to see which classes it actually uses)

link|flag

Your Answer

Get an OpenID
or

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