What is the difference between the C#.NET and VB.NET?

Showing Answers 1 - 2 of 2 Answers

Saravanan

  • Sep 12th, 2005
 

VB.NET

- It didn't have the XML Documentation.

- It didn't have the Operator Overloading.

- It didn't have the Pointer Type variables.

C#.NET

- It has XML Documentation, Operator Overloading and supports Pointer Variables using unsafe keyword.

  Was this answer useful?  Yes

Diju

  • Mar 7th, 2006
 

Syntactically, Visual Basic .NET and Visual C# .NET are two different languages, just as Visual Basic, Visual C, and Visual C++ are different languages. Visual C# .NET looks more familiar to Visual C, Visual C++, and Java programmers, and Visual Basic .NET looks more familiar to Visual Basic developers. The biggest differences between the languages fall into the following categories:? Case sensitivity? Variable declaration and assignment? Data types? Statement termination? Statement blocks? Use of () vs. []? Operators? Conditional statements? Error handling? Overflow checking? Parameter passing? Late binding? Handling unmanaged code? Keywords

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions