up vote 1 down vote favorite
share [g+] share [fb]

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
...
link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

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|improve this answer
feedback

Your Answer

 
or
required, but never shown

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