gpt4 book ai didi

.net - 维护 “clean” 程序集引用列表有什么好处?

转载 作者:行者123 更新时间:2023-12-03 17:06:38 29 4
gpt4 key购买 nike

就像Carl's question over here我想问你(因为我自己找不到 :( ) 删除既不是静态也不是动态(例如通过反射)使用的程序集引用是否有任何好处。

最佳答案

除了清理项目之外,删除未使用的程序集引用不会改变任何内容。当您添加程序集引用时,编译器将忽略您实际上没有在代码中使用的任何程序集。因此,如果您要设置对 System.Data.dll 和 System.Windows.Forms.dll 的引用,但只编写了以下代码:

using System;

public class MyClass
{
public static void Main()
{
Console.WriteLine("Hi there.");
}
}

编译器只会引用强制性的 mscorlib.dll

关于.net - 维护 “clean” 程序集引用列表有什么好处?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/508292/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com