What is /optimize C# compiler key intended for?(/optimize C# 编译器密钥的用途是什么?)
问题描述
/是否有完整的优化列表优化 C# 编译器密钥 随处可用?
为什么默认禁用?是否值得在实际应用中使用? -- 默认情况下,它仅在 Debug 配置中禁用,在 Release 中启用.
Why is it disabled by default? Is it worth using in a real-world app? -- it is disabled by default only in Debug configuration and Enabled in Release.
推荐答案
Scott Hanselman 有一篇博文 展示了/optimize(在 Release Builds 中启用)功能的几个示例.
Scott Hanselman has a blog post that shows a few examples of what /optimize (which is enabled in Release Builds) does.
作为一个总结:/optimize 做了很多没有给出确切数字或定义的事情,但其中一个更明显的是方法内联(如果你有一个方法 A(),它调用 B(),它调用 C(),它调用D(),编译器可能会跳过" B 和 C,直接从 A 转到 D),这可能会导致 Release 构建中出现奇怪"的调用堆栈.
As a summary: /optimize does many things with no exact number or definition given, but one of the more visible are method inlining (If you have a Method A() which calls B() which calls C() which calls D(), the compiler may "skip" B and C and go from A to D directly), which may cause a "weird" callstack in the Release build.
这篇关于/optimize C# 编译器密钥的用途是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:/optimize C# 编译器密钥的用途是什么?
基础教程推荐
- 如果有人提交恶意软件Nuget包怎么办? 2022-01-01
- 我应该在后面的代码中直接使用 Linq To SQL 还是使 2022-01-01
- 如何使用 .Net 检查 Active Directory 服务器是否已启动并正在运行? 2022-01-01
- Azure Functions:CosmosDBTrigger 未在 Visual Studio 中触发 2022-01-01
- 当值可以是对象或空数组时反序列化 JSON 2022-01-01
- 禁止输入少量字符,例如'<'、'&a 2022-01-01
- .NET SerialPort DataReceived 事件未触发 2022-01-01
- WPF 模态进度窗口 2022-01-01
- C# 从 List<List<int>> 中删除重 2022-01-01
- Moq It.Is<>不匹配 2022-01-01
