vote up 0 vote down star

Does VB.NET have more types than C#?

flag

4 Answers

vote up 9 vote down check

No, they are under the same .NET Framework, the only thing VB.NET has by default is a reference to Microsoft.VisualBasic.... namespace.

link|flag
vote up 1 vote down

Well the VB.NET has some stuff for backward compatibility with vb6 but you can access the moste of it from c# if you add a reference to the right assembly.

link|flag
vote up 1 vote down

VB.NET lacked support for unsigned types back in the day, but now it's fixed. And since all these languages are CLR ones, the set of types is equivalent. VB.NET still has some weird old-school compatibility aliases (like Date and some others I can't remember) but these are just aliases to standard CLR types.

link|flag
vote up 3 vote down

Types in both languages refer to the same Intrinsic CTS Data Types. (CTS = Common Type System)

link|flag
I think that out of all the answers, this is the perfect one! ;-) – Cerebrus Feb 12 at 8:13
Too bad another one has already been accepted ;) – Gerrie Schenck Feb 12 at 8:26

Your Answer

Get an OpenID
or

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