《CLR Via C# 第3版》笔记之(三) - 程序集和模块

简介:

主要内容:

  • 程序集和模块区别
  • 多文件程序集

1. 程序集和模块区别

关于.net中程序集和模块的区别,其实已经有很多人讨论过了,希望本篇仍对大家有所帮助。

程序集与模块的共同点:

  1. 都是为了定义一些可重用的类型。
  2. 对于引用者来说,调用程序集中的公开类型(public)和模块的公开类型,没有什么分别。

程序集和模块的区别:(主要是程序集包含的内容更加丰富)

  1. 程序集可以发布,而模块不能。
  2. 程序集标记了一个版本号,可以唯一的标记程序集。
  3. 程序集还可以包含有关联的安全信息。

以下演示编译程序集和模块的方法:

首先定义两个文件,MyAssembly.cs和MyModule.cs。

using System;

namespace CLRViaCSharp
{
    public class MyAssembly
    {
        public MyAssembly()
        { }

        public void Public_method()
        {
            Console.WriteLine("this is a public method!");
        }

        protected void Protected_method()
        {
            Console.WriteLine("this is a protected method!");
        }

        private void Private_method()
        {
            Console.WriteLine("this is a private method!");
        }
    }
}
using System;

namespace CLRViaCSharp
{
    public class MyModule
    {
        public MyModule() { }

        public void Public_method()
        {
            Console.WriteLine("this is a public method!");
        }

        protected void Protected_method()
        {
            Console.WriteLine("this is a protected method!");
        }

        private void Private_method()
        {
            Console.WriteLine("this is a private method!");
        }
    }
}

分别编译为assembly和module。

d:\Vim\csharp>csc /t:library /out:MyAssembly.dll MyAssembly.cs
Microsoft (R) Visual C# 2010 Compiler version 4.0.30319.1
Copyright (C) Microsoft Corporation. All rights reserved.


d:\Vim\csharp>csc /t:module /out:MyModule.netmodule MyModule.cs
Microsoft (R) Visual C# 2010 Compiler version 4.0.30319.1
Copyright (C) Microsoft Corporation. All rights reserved.

生成的程序集和模块分别为:MyAssembly.dll,MyModule.netmodule。生成后使用ILDASM.exe分别来查看其元数据。查看方法:ILDASM | View | MetaInfo | Show!

比较MyAssembly.dll和MyModule.netmodule的元数据,我们发现MyAssembly.dll明显多了以下信息。

Assembly
-------------------------------------------------------
	Token: 0x20000001
	Name : MyAssembly
	Public Key    :
	Hash Algorithm : 0x00008004
	Version: 0.0.0.0
	Major Version: 0x00000000
	Minor Version: 0x00000000
	Build Number: 0x00000000
	Revision Number: 0x00000000
	Locale: <null>
	Flags : [none] (00000000)
	CustomAttribute #1 (0c000001)
	-------------------------------------------------------
		CustomAttribute Type: 0a000001
		CustomAttributeName: System.Runtime.CompilerServices.CompilationRelaxationsAttribute :: instance void .ctor(int32)
		Length: 8
		Value : 01 00 08 00 00 00 00 00                          >                <
		ctor args: (8)

	CustomAttribute #2 (0c000002)
	-------------------------------------------------------
		CustomAttribute Type: 0a000002
		CustomAttributeName: System.Runtime.CompilerServices.RuntimeCompatibilityAttribute :: instance void .ctor()
		Length: 30
		Value : 01 00 01 00 54 02 16 57  72 61 70 4e 6f 6e 45 78 >    T  WrapNonEx<
                      : 63 65 70 74 69 6f 6e 54  68 72 6f 77 73 01       >ceptionThrows   <
		ctor args: ()

即表明MyAssembly.dll为一个程序集。正因为有了这些信息,MyAssembly.dll才可以发布和部署。

2. 多文件程序集

一般我们自己编译的程序集都是单个文件的(一个exe或者一个dll)。那么,如何编译出多文件的程序集呢?

多文件的程序集有以下的优势:

  1. 发布后,程序集有多个文件,只须下载所需的文件就能运行程序集,不用全部下载。
  2. 发布后,如果程序集有更新,只须下载更新的部分即可,不用重新下载整个程序集。

下面进行简单的实验

首先,建立3个文件,Module1.cs, Module2.cs, Program.cs。内容如下:

// file:Module1.cs

using System;

namespace CLRViaCSharp
{
    public class Module1
    {
        public void Module1_method()
        {
            Console.WriteLine("this is the original module1");
        }
    }
}

// file:Module2.cs

using System;

namespace CLRViaCSharp
{
    public class Module2
    {
        public void Module2_method()
        {
            Console.WriteLine("this is the original module2");
        }
    }
}


// file :Program.cs

using System;

namespace CLRViaCSharp
{
    class Program
    {
        static void Main(string[] args)
        {
            Module1 m1 = new Module1();
            Module2 m2 = new Module2();

            m1.Module1_method();
            m2.Module2_method();
        }
    }
}

然后,分别将Module1.cs和Module2.cs编译为模块,将此两个模块和Program.cs编译为一个程序集。

D:\Vim\csharp>csc /t:module Module1.cs
Microsoft (R) Visual C# 2010 Compiler version 4.0.30319.1
Copyright (C) Microsoft Corporation. All rights reserved.


D:\Vim\csharp>csc /t:module Module2.cs
Microsoft (R) Visual C# 2010 Compiler version 4.0.30319.1
Copyright (C) Microsoft Corporation. All rights reserved.


D:\Vim\csharp>al /t:library /out:Module.dll Module1.netmodule Module2.netmodule
Microsoft (R) Assembly Linker version 10.0.30319.1
Copyright (C) Microsoft Corporation. All rights reserved.


D:\Vim\csharp>csc Program.cs /r:Module.dll
Microsoft (R) Visual C# 2010 Compiler version 4.0.30319.1
Copyright (C) Microsoft Corporation. All rights reserved.

注意其中第三步是用来al.exe这个程序集链接器来链接dll的。

执行编译好的Program.exe,结果如下:

D:\Vim\csharp>Program.exe
this is the original module1
this is the original module2

然后我们修改一下Module1.cs文件,修改Console.WriteLine的内容。

using System;

namespace CLRViaCSharp
{
    public class Module1
    {
        public void Module1_method()
        {
            Console.WriteLine("this is the update module1");
        }
    }
}

只重新编译一下Module1.cs,注意此处不重新编译Module.dll和Program.exe

再次执行Program.exe时,结果就改变了。

D:\Vim\csharp>csc /t:module Module1.cs
Microsoft (R) Visual C# 2010 Compiler version 4.0.30319.1
Copyright (C) Microsoft Corporation. All rights reserved.


D:\Vim\csharp>Program.exe
this is the update module1
this is the original module2

这个例子中的Module.dll就是个多文件的程序集,它并没有将Module1.netmodule和Module2.netmodule的内容加到Module.dll中,只是在Module.dll中保存了Module1.netmodule和Module2.netmodule的引用。

查看Module.dll的元数据也可以看出这点,Module.dll中只有清单(Manifest),没有实际的IL内容。

捕获



本文转自wang_yb博客园博客,原文链接:http://www.cnblogs.com/wang_yb/archive/2011/04/24/2026530.html,如需转载请自行联系原作者

目录
相关文章
|
1月前
|
缓存 C# Windows
C#程序如何编译成Native代码
【10月更文挑战第15天】在C#中,可以通过.NET Native和第三方工具(如Ngen.exe)将程序编译成Native代码,以提升性能和启动速度。.NET Native适用于UWP应用,而Ngen.exe则通过预编译托管程序集为本地机器代码来加速启动。不过,这些方法也可能增加编译时间和部署复杂度。
|
1月前
|
设计模式 程序员 C#
C# 使用 WinForm MDI 模式管理多个子窗体程序的详细步骤
WinForm MDI 模式就像是有超能力一般,让多个子窗体井然有序地排列在一个主窗体之下,既美观又实用。不过,也要小心管理好子窗体们的生命周期哦,否则一不小心就会出现一些意想不到的小bug
104 0
|
1月前
|
算法 安全 测试技术
C#——刘铁猛笔记
C#——刘铁猛笔记
48 0
|
1月前
|
XML 存储 安全
C#开发的程序如何良好的防止反编译被破解?ConfuserEx .NET混淆工具使用介绍
C#开发的程序如何良好的防止反编译被破解?ConfuserEx .NET混淆工具使用介绍
66 0
|
1月前
|
安全 API C#
C# 如何让程序后台进程不被Windows任务管理器强制结束
C# 如何让程序后台进程不被Windows任务管理器强制结束
65 0
|
2月前
|
C# 容器
C#中的命名空间与程序集管理
在C#编程中,`命名空间`和`程序集`是组织代码的关键概念,有助于提高代码的可维护性和复用性。本文从基础入手,详细解释了命名空间的逻辑组织方式及其基本语法,展示了如何使用`using`指令访问其他命名空间中的类型,并提供了常见问题的解决方案。接着介绍了程序集这一.NET框架的基本单位,包括其创建、引用及高级特性如强名称和延迟加载等。通过具体示例,展示了如何创建和使用自定义程序集,并提出了针对版本不匹配和性能问题的有效策略。理解并善用这些概念,能显著提升开发效率和代码质量。
104 4
|
1月前
|
API C#
C#实现Winform程序右下角弹窗消息提示
C#实现Winform程序右下角弹窗消息提示
85 0
|
2月前
|
Linux C# 开发者
Uno Platform 驱动的跨平台应用开发:从零开始的全方位资源指南与定制化学习路径规划,助您轻松上手并精通 C# 与 XAML 编程技巧,打造高效多端一致用户体验的移动与桌面应用程序
【9月更文挑战第8天】Uno Platform 的社区资源与学习路径推荐旨在为初学者和开发者提供全面指南,涵盖官方文档、GitHub 仓库及社区支持,助您掌握使用 C# 和 XAML 创建跨平台原生 UI 的技能。从官网入门教程到进阶技巧,再到活跃社区如 Discord,本指南带领您逐步深入了解 Uno Platform,并提供实用示例代码,帮助您在 Windows、iOS、Android、macOS、Linux 和 WebAssembly 等平台上高效开发。建议先熟悉 C# 和 XAML 基础,然后实践官方教程,研究 GitHub 示例项目,并积极参与社区讨论,不断提升技能。
98 2
|
3月前
|
缓存 NoSQL Redis
【Azure Redis 缓存】C#程序是否有对应的方式来优化并缩短由于 Redis 维护造成的不可访问的时间
【Azure Redis 缓存】C#程序是否有对应的方式来优化并缩短由于 Redis 维护造成的不可访问的时间