Intr
Intr
* (RAD)-Visual Basic environment for Rapid Application Environment * the .Net framework 2.0 consists of two components: .Net framework class library and Common Language Runtime.(CLR). * Namespaces:Logical groupings of realted classes. Root of the .Net framework.type representation of data. This called Common Type System(CTS). * Namespaces decalared. system.web.services ------------------------------------------------Namespaces/Class * System.Math - To provide useful Mathematical Function Such as sqrt(). * System.Widows.Forms - To provide useful class and function needed for Widows programming. * System.Exception - To provide error-handling facility. * System.Threading - To provide effivient mutithreading functionality. * System.IO - To provide easy abstracted access to the file system.
* System.Net - To provide classes that provides basic network functionality. * System.Data - To provide data binding functionality to a data source. * System.Web.Services - To provide web-realted object needed to implement the web service. * System.Diagnostics - To provide classes to debug an application and to trace the execution of code. * System.Reflection - To provide the capability to inspect metadata. * System.Security - To provide the features which ensure adequte security.
---------------------------------------------* CLR - The CLR is heart of the .NET framework. ---------------------* MSIL-(MICROSOFT INTERMEDIATE LANGUAGE) Source code into Native code.using vbc caried out Visual Studio IDE (Integrated Development Environment). ----------------------* JIT-(JUST IN TIME) Converted into source code into native code using JIS compiler. ----------------------* .Net framework run Windows operating system. will work the other operating system.including Linux OS and Mac OS.
-----------------------------------------------------------------------------------------------------------The Major Components of CLR -------------------------------------------1. Common Type System (CTS) 2. Common Language Specification (CLS) 3. Common Intermediate Language (CIL) or (MSIL) 4. Just In Time Compiler (JIT) or (MSJIT) 5. Virtual Execution System -----------------------------------------------------------------------------------------------------------