What is the difference between .net 2000 and .net 2005(features)? Which one is better?
Answer / Preeti Sonker
NET Framework 2.0 (.NET 2005) introduced several new features, improvements, and enhancements over NET Framework 1.0/1.1 (.NET 2000).nnSome of the major differences and improvements include:n
1. Improved performance with Just-In-Time (JIT) compiler.
2. Support for generics, a feature that allows type-safe collections and methods to be defined without knowing the actual types at compile time.
3. Support for partial classes, which enables developers to split class declarations into multiple files.
4. Support for ASP.NET 2.0, which includes new features like master pages, themes, and site navigation.
5. Enhanced exception handling with try-catch blocks that can handle multiple exceptions.nnAs for the question about which one is better, .NET 2005 is generally considered superior due to its enhanced features and improvements over .NET 2000.
| Is This Answer Correct ? | 0 Yes | 0 No |
Major role of CLR for CAS
What is garbage collection and how it works ?
What is Delegate? Have ever used Delegates in your project.
Explain how to stop a thread?
What is .net3.0 and .net3.5?
As you know read-only variables and constants have many similarities, but what is at least one way that they differ?
DateTime[] dt = new DateTime[10] for(i=0; i<10; i++) { dt[i] = DateTime(2008, 1, i+1) } How many heap object will be created for the above array. Choose the correct answer below. Ans: 1, 10, 11, 12
what are connection strings?
Explain about .net?
What is different between webusercontrol and in webcustomcontrol?
What is garbage collection? Explain the difference between garbage collections in .net 4.0 and earlier versions?
What is Active Directory? What is the namespace used to access the Microsoft Active Directories? What are ADSI Directories?