【目录信息】
Part I CLR Basics .
1 The CLR’s Execution Model 3
Compiling Source Code into Managed Modules 3
Combining Managed Modules into Assemblies 6
Loading the Common Language Runtime 8
Executing Your Assembly’s Code 11
IL and Verification 16
Unsafe Code 17
The Native Code Generator Tool: NGen.exe 19
Introducing the Framework Class Library 22
The Common Type System 24
The Common Language Specification 26
Interoperability with Unmanaged Code 30
2 Building, Packaging, Deploying, and Administering
Applications and Types 33
.NET Framework Deployment Goals 34
Building Types into a Module 35
Response Files 36
<< 查看详细目录
【序言】
Over the years, Microsoft has introduced various technologies to help developers architect and implement code. Many of these technologies offer abstractions that allow developers to think about solving their problems more and think about the machine and operating system less. Here are some examples: .
■ The Microsoft Foundation Class library (MFC) offered a C++ abstraction over GUI programming. Using MFC, developers could focus more on what their program should do and they can focus less on message loops, window procedures, window classe..
<< 查看序言