1.

State some key differences between C# and VB.NET.

Answer»
Comparison ParameterC#VB.NET
Optional ParametersOptional Parameters will be ALLOWED in C#.VB.NET does not allow optional parameters.
Case SensitivityC# is not case sensitive.VB.NET is case sensitive.
Error HandlingC# supports structured error handling as well as unstructured error handling.VB.NET supports only unstructured error handling.
Release of Unmanaged ResourcesIn C#, unmanaged resources cannot be released.In VB.NET, the "USING" KEYWORD can be used for releasing unmanaged resources. 


Discussion

No Comment Found