what is diff between .net 1.1 and .net 2.0
Answers were Sorted based on User's Feedback
Answer / skybeaver
The .NET framework was upgraded considerably between 1.1
and 2.0. Major language additions include
generics/templates, anonymous delegates, nullable value
types, etc.
Every major developer building block - Win Forms, ASP.NET,
etc., was also upgraded.
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / rajiv ranjan giri
Major Difference is of Master Page concept and new controls
added based on xml to make it lighter
| Is This Answer Correct ? | 5 Yes | 2 No |
Answer / gp_bellamkonda
.NET Framework 2.0 added the following namespaces:
System.Collections.Generics namespace ->would be the biggy
as far as the BCL classes go
System.IO.Ports ->Supply the SerialPort class to implement
serial port operation.
System.IO.Compression -> Implement compression and
decompression operation on files.
System.Net.NetworkInformation -> Gather information about
network events, changes, statistics, and properties.
System.Security.AccessControl -> Provide programming
elements used to control access to and audit security-
related actions on securable objects.
In addition, added the FtpWebRequest class and the
FtpWebResponse class to the System.Net namespace, thus
support FTP function.
Add the SmtpClient calss to the system.Net.Mail namespace,
thus support mail operation.
By the way, the .Net Framework 3.0 adds the system.speech
namespace, which contains Windows Desktop Speech technology
types for implementing speech recognition.
| Is This Answer Correct ? | 2 Yes | 0 No |
what is the drawback of classical methods in oops?
What is the different between Applet and Application?
sir plz send me a set of questions that been frequently held in written examination during campus selection.
Whats is abstraction in oops?
We have a scale and 7 balls. 1 ball is heavier than all the rest. How to determine the heaviest ball with only 3 possible weighing attempts?
swapping program does not use third variable
how to find no of instances of an object in .NET?
write a code for this. serial_number contained in the header of the file will be read , if this serial number is less than a previous serial number within a successfully processed file, or is the same as another serial number within a successfully processed file, or if the field contains anything other than 7 digits, then the file must error with the reason ‘Invalid SERIAL_NUMBER’.
What is polymorphism and example?
Why can't we have instance(stack) of a class as a member of the same class like eg.Class A{A obj;} as we can have self refential pointer
Hi All, I am new to programming and want to know how can i write a code to take input of 2 numbers from user and swap it without using a temp variable?
What is memory leak and memory corruption?