new to .NET 2.0

Google
 
Web www.mndtechnologies.com

Thursday, April 27, 2006

Features of .NET

While reading the introduction chapter of the book, I found some features of .NET that I would like to mention here.
  • Interoperability with existing code:

    The .NET code can interop with the existing COM libraries, so there is no need to rewrite the existing code. Only the new code needs to be written in .NET. Also the existing COM components can call a .NET component through CCW (COM Callable Wrapper)
  • Language Independence:

    The .NET code is language independent. This is possible because the code is compiled into MSIL, not the native language. There is a separate source code to MSIL compiler for each .NET language. The CLR (Common Language Runtime) compiles the MSIL code to native code while executing the application. (This looks like java bytecode and JVM) The benefit over java is that other classes can inherit from code in MSIL (not in bytecode).
  • Common Type System (CTS):

    All the .NET languages share the same data type. Like int in C# is the same as Integer in VB.NET and string in C# is the same as String in VB.NET. This requires no conversion of data from one type to another while communicating between two applications written in different .NET languages. int/Integer is System.Int32 and string/String is System.String
  • Object oriented base classes:

    The FxCL (Framework Class Library) provided with .NET is object oriented. It hides the complexities of OS API behind those objects and their methods.
  • End to DLL Hell! :

    With .NET the deployment is very easy. There are many ways of deploying applications developed in .NET. .NET applications do not need to make entries in the Windows registry and also allows multiple .DLLs of the same name, co-exist on the same instance of the OS. This is because of the structure of GAC that the shared assemblies of different versions can also co-exist (I will discuss the structure of GAC later on).

Sunday, April 23, 2006

Got 3 books on .NET 2.0

After lot of scanning of books yesterday evening, I purchased the following books to begin with .NET 2.0. 1. Pro C# 2005 and the .NET 2.0 Platform, Third Edition (INR 599.00)http://www.amazon.com/gp/product/1590594193/102-8106364-5652112?v=glance&n=283155 2. Professional ASP.NET 2.0 (INR 450.00) http://www.amazon.com/gp/product/0764576100/sr=1-1/qid=1145780484/ref=pd_bbs_1/102-8106364-5652112?%5Fencoding=UTF8&s=books 3. ASP.NET 2.0: A Developer's Notebook (INR 325.00)http://www.amazon.com/gp/product/0596008120/102-8106364-5652112?v=glance&n=283155 I've decided to include the ASP.NET 2.0 book as I have not done any website development. So, I'm going to start with C# 2.0 and hope to complete this book fast without any breaks. Wish me good luck ;) (If somebody have some good ebooks on .NET 2.0, please send me coz i can't carry that paper copy everywhere with me, but I can carry the eBook in my mobile.)

Saturday, April 22, 2006

Starting .NET 2.0

Hah, after all, today I have got some spare time to start on .NET 2.0. Till now I've been working on .NET 1.1. Because of those deadlines of the project to be met, I was busy and was not able to spare time to learn .net 2.0 I'll update this blog as I proceed in .net 2.0. Now, I've to search for sites and books on .NET 2.0 so that I can update this blog ;)