Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
Other Resources:
What is the difference between VB.NET and C#
What is the difference between VB.NET and C# ?
✍: Guest
Well this is the most debatable issue in .NET community and people treat there languages like
religion. Its a subjective matter which language is best. Some like VB.NET’s natural style and some
like professional and terse C# syntaxes. Both use the same framework and speed is also very much
equivalents. But still let’s list down some major differences between them :-
Advantages VB.NET :-
ã Has support for optional parameters which makes COM interoperability much easy.
ã With Option Strict off late binding is supported.Legacy VB functionalities can be
used by using Microsoft.VisualBasic namespace.
ã Has the WITH construct which is not in C#.
ã The VB.NET part of Visual Studio .NET compiles your code in the background.
While this is considered an advantage for small projects, people creating very large
projects have found that the IDE slows down considerably as the project gets larger.
Advantages of C#
ã XML documentation is generated from source code but this is now been incorporated
in Whidbey.
ã Operator overloading which is not in current VB.NET but is been introduced in
Whidbey.
ã Use of this statement makes unmanaged resource disposal simple.
ã Access to Unsafe code. This allows pointer arithmetic etc, and can improve
performance in some situations. However, it is not to be used lightly, as a lot of the
normal safety of C# is lost (as the name implies).This is the major difference that you
can access unmanaged code in C# and not in VB.NET.
* How much ever this book tries it can not match the huge variations of questions that have been asked in.NET interviews.But note there will be variations and they will map to some question of this book.
2007-10-22, 4601👍, 0💬
Popular Posts:
How to make elements invisible? Change the "visibility" attribute of the style object associated wit...
In C#, what is a weak reference? Generally, when you talk about a reference to an object in .NET (an...
Write down the equivalent pointer expression for referring the same element a[i][j][k][l]? a[i] == *...
Can you explain different software development life cycles -part II? Water Fall Model This is the ol...
How to convert a Unix timestamp to a Win32 FILETIME or SYSTEMTIME? The following function converts a...