2009年12月26日

Exposing .NET Framework Components to COM 综述

摘要: Exposing .NET Framework Components to COMWriting a .NET type and consuming that type from unmanaged code are distinct activities for developers. This section describes several tips for writing managed... 阅读全文

posted @ 2009-12-26 20:24 Acor 阅读(210) 评论(0) 推荐(0) 编辑

Compiling to MSIL

摘要: Compiling to MSIL .NETFrameworkDeveloper'sGuideCompiling to MSILWhen compiling to managed code, the compiler translates your source code into Microsoft intermediate language (MSIL), which is a CPU-ind... 阅读全文

posted @ 2009-12-26 19:19 Acor 阅读(249) 评论(0) 推荐(0) 编辑

MSIL Disassembler (Ildasm.exe)

摘要: MSIL Disassembler (Ildasm.exe)The MSIL Disassembler is a companion tool to the MSIL Assembler (Ilasm.exe). Ildasm.exe takes a portable executable (PE) file that contains Microsoft intermediate languag... 阅读全文

posted @ 2009-12-26 18:07 Acor 阅读(1108) 评论(0) 推荐(0) 编辑

Assembly to Type Library 之 Exported Member Conversion(Describes how export process converts methods, properties,event)

摘要: Exported Member ConversionThis topic describes how the export process converts the following members: MethodsPropertiesEvents MethodsCOM clients expect to call methods, passing familiar COM data types... 阅读全文

posted @ 2009-12-26 17:20 Acor 阅读(368) 评论(0) 推荐(0) 编辑

Introducing the Class Interface

摘要: Introducing the Class InterfaceThe class interface, which is not explicitly defined in managed code, is an interface that exposes all public methods, properties, fields, and events that are explicitly... 阅读全文

posted @ 2009-12-26 15:59 Acor 阅读(331) 评论(0) 推荐(0) 编辑

Assembly to Type Library 之 Exported Type Conversion (Describes how the export process converts classes, interfaces, val)

摘要: Exported Type ConversionThis topic describes how the export process converts the following types: ClassesInterfacesValue typesEnumerations In general, exported types retain the same name they had with... 阅读全文

posted @ 2009-12-26 15:34 Acor 阅读(366) 评论(0) 推荐(0) 编辑

Assembly and Type Library Identities

摘要: Exported Assembly ConversionAny tool or API that exports an assembly to a type library must convert the outermost level of a managed assembly first. The process converts each individual assembly into ... 阅读全文

posted @ 2009-12-26 13:53 Acor 阅读(323) 评论(0) 推荐(0) 编辑

Assembly to Type Library

摘要: Assembly to Type Library Conversion SummaryAssemblies provide the common language runtime with the information it needs to be aware of type implementations. Type libraries do the same for COM types. C... 阅读全文

posted @ 2009-12-26 12:08 Acor 阅读(163) 评论(0) 推荐(0) 编辑

导航