adspace


What is your observations between vb.net and vc#.net?

Answer Posted / Deepak Kumar Gaur

Both VB.NET and C#.NET are object-oriented programming languages used in the .NET framework. While they share many similarities, there are some differences to note:n
1. Syntax: C# has a more modern syntax compared to VB.NET. It is generally considered cleaner and easier to read.
2. Interoperability: C# offers better interoperability with unmanaged code such as C++ libraries due to its C-like syntax.
3. Performance: C# may offer slightly better performance in some cases, especially when working with low-level tasks like memory management and multi-threading.
4. Community Support: C# has a larger and more active community compared to VB.NET, which can make finding help and resources easier.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write the .net syntax for 'while loop'?

1143