What is the difference between the C#.NET and VB.NET?
Answer Posted / vasu
The Common Language Specification (CLS) is an agreement among language designers and class library designers to use a common subset of basic language features that all languages have to follow.
Common Type System (CTS) describes how types are declared, used and managed in the runtime and facilitates cross-language integration, type safety, and high performance code execution.CTS defines rules that languages must follow, which helps ensure that objects written in different languages can interact with each other.
Common Language Runtime is the underpinning of the .NET Framework. CLR takes care of code management at program execution and provides various beneficial services such as memory management, thread management, security management, code verification, compilation, and other system services. The managed code that targets CLR benefits from useful features such as cross-language integration, cross-language exception handling, versioning, enhanced security, deployment support, and debugging.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Show different types of collection in .NET?
Do you know what is .net standard?
Can any object be stored in a viewstate in .net?
Write a program to create a user control with name and surname as data members and login as method and also the code to call it.
Explain the difference between asp.net & vb.net and explain architecture?
State the various features present in .NET?
What is managed code and managed data in .net?
Why do we use the “using” statement?
SAP Business One(this is intigrated tool of .net)
What are the new features of Framework 1.1 ?
what is prototype design pattern in .net
Explain what is the difference between a class and an object?
Tell us the difference between the while and for loop. Provide a .net syntax for both loops?
What's wrong with a line like this? Datetime.parse(mystring);
What is an anonymous method and how is it different from a lambda expression?