|
|
| Programming Get help with creating your scripts/software or help others. Discuss anything relating to programming. Includes PHP, Perl, C++, ColdFusion, etc. |

09-27-2011, 06:32 AM
|
|
Senior Member
|
|
Join Date: Sep 2011
Posts: 188
|
|
Difference between the C# and VB.net
How We differentiate the C# and Vb.net in .net Platform...
|

10-15-2011, 07:11 AM
|
|
Junior Member
|
|
Join Date: Oct 2011
Posts: 19
|
|
|
C# is a programing language while VB.net is .net framework application.
|

11-22-2011, 11:14 AM
|
|
Senior Member
|
|
Join Date: Nov 2011
Posts: 256
|
|
|
c# is DOS basic programming language & vb.net is framework . net framework are multiple language support.
|

12-27-2011, 07:23 AM
|
|
Senior Member
|
|
Join Date: Dec 2011
Posts: 469
|
|
|
C# is programming language and VB.net window based language....
|

03-15-2012, 07:51 AM
|
 |
Senior Member
|
|
Join Date: Mar 2012
Location: New York, USA
Posts: 165
|
|
|
I love to code with C#. It is too simple to understand and write also. I mostly love to code in asp.net with code behind. I also integrate the vb with the application if it is ever made by others.
|

03-19-2012, 06:06 AM
|
|
Senior Member
|
|
Join Date: Aug 2011
Posts: 347
|
|
|
c# isn't really 'better' for learning as it's just another syntax for the same thing. The code all gets converted to the same language whether you do it in VB.NET or c#.
The downside to VB.NET is the framework must be installed (1.0 or 2.0 depending on your version of VS - we use both at work...awesome ) which is quite bulky...but more and more apps are starting to use it and it's becoming a default install on servers
The other downside is that the language is never going to be quite as quick as something made in c/c++.
So for games, I'd probably stick with C++ - for rapid development of applications I'd use .NET.
|

03-20-2012, 07:45 AM
|
|
Senior Member
|
|
Join Date: Sep 2011
Location: Google Analytic
Posts: 139
|
|
|
Vb.net is not case sensitive where C# is case sensitive.
|

04-09-2012, 06:57 AM
|
|
Senior Member
|
|
Join Date: Mar 2012
Posts: 134
|
|
|
Event gets bind automatically in VB.Net.
VB.NET is not case sensitive where C# is.
Shadowing: – This is a VB.Net Concept by which you can provide a new implementation for the base class member without overriding the member. You can shadow a base class member in the derived class by using the keyword “Shadows”. The method signature, access level and return type of the shadowed member can be completely different than the base class member.
Hiding: – This is a C# Concept by which you can provide a new implementation for the base class member without overriding the member. You can hide a base class member in the derived class by using the keyword “new”. The method signature, access level and return type of the hidden member has to be same as the base class member. Comparing the two:-
1) The access level, signature and the return type can only be changed when you are shadowing with VB.NET. Hiding and overriding demands these parameters as same.
2) The difference lies when you call the derived class object with a base class variable. In class of overriding although you assign a derived class object to base class variable it will call the derived class function. In case of shadowing or hiding the base class function will be called.
|

04-13-2012, 10:35 AM
|
|
Senior Member
|
|
Join Date: Mar 2012
Posts: 172
|
|
|
i have now days started to learn the code of vb.net i will study about c
# later then i will able to know the difference between both of them.
|

05-29-2012, 02:28 PM
|
|
Banned
|
|
Join Date: May 2011
Posts: 349
|
|
|
Both are same
but if you are jave developer then you will like to work in C#
if you are VB developer then you will like to work in VB.NET
|

08-01-2012, 10:22 AM
|
|
Junior Member
|
|
Join Date: Jul 2012
Posts: 15
|
|
|
I enjoy the code with C#. It is easy to understand and simple to write. I generally prefer to code in asp.net with code behind. I have also used vb.
|

08-04-2012, 10:25 AM
|
|
Senior Member
|
|
Join Date: Jul 2012
Location: india
Posts: 111
|
|
|
C# is the odject oriented programming language and its a new version of C and C++ language. C# is the language which design for work with .net platform.
VB.net is a new generation of visual basic and its have a new features and tools. Vb.net is one types of framework and it support many language.
|

08-06-2012, 02:15 PM
|
|
Senior Member
|
|
Join Date: Jan 2011
Posts: 438
|
|
|
.net and C# both are the part of .net frame work
both have same feature just syntax part is different
|

08-06-2012, 06:46 PM
|
|
Senior Member
|
|
Join Date: Jul 2012
Posts: 261
|
|
|
I think C# is a one of the programming application in Visual studio package to modify web or desktop applications.
|

08-07-2012, 06:09 AM
|
|
Junior Member
|
|
Join Date: Aug 2012
Posts: 15
|
|
|
I enjoy the code with C#. It is easy to understand and simple to write. I generally prefer to code in asp.net with code behind. I have also used vb.
|

09-21-2012, 12:49 PM
|
 |
Member
|
|
Join Date: Jul 2012
Location: USA
Posts: 46
|
|
|
- C# is a .NET language.
- ASP.NET is a .NET web framework.
- The code part of an ASP.NET web app can be coded in either C# or VB.NET .
- The one web framework multiple language part is actually reasonable similar to ASP most code in VBScript, then other languages including JScript where also possible.
|

09-22-2012, 02:07 PM
|
|
Member
|
|
Join Date: Apr 2012
Location: Chandigarh, india
Posts: 92
|
|
|
C# and VB.net both are programming languages for developing.the main difference is c# is object oriented programming language and it runs on the server and VB.net is window based and developing windows application
|

10-19-2012, 09:29 AM
|
|
Junior Member
|
|
Join Date: Oct 2012
Posts: 15
|
|
|
Code C# is very simple to use and understand and you can get the maximum result. While VB.net is an application through which you can achieve the best result.
|

12-14-2012, 06:53 AM
|
|
Senior Member
|
|
Join Date: Dec 2012
Posts: 101
|
|
|
In C#, using keyword is used to release unmanaged resources.
Optional parameter is supported in VB.NET.
Structure and unstructured error handling is supported in VB.NET. (Unstructured error handling is not supported in C#).
VB.NET is not case sensitive where C# is.
|

12-29-2012, 12:54 PM
|
|
Senior Member
|
|
Join Date: Sep 2012
Posts: 118
|
|
|
one(vb.net) is window based programming with drag and drop facility and other (c#) is dos based in which hand typed code needed.
|
| Thread Tools |
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT +1. The time now is 10:38 AM.
|