Dear Experts
Please suggest me when to use vb.net and when to use c#.net
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
VulpesPosted Mar 24, 2011, 8:39 AM
However, there's one thing which C# has which VB.Net doesn't have, namely the ability to use pointers in unsafe code. This is useful for accessing memory mapped devices (e.g. embedded programming) or speeding up some types of algorithm (e.g. certain games).
Personally, I also find it much easier to use C# rather than VB in applications which require considerable interop with unmanaged code written in C/C++ because the syntax of C# is, of course, closer to the latter.
Mahesh ChandPosted Mar 24, 2011, 8:23 AM