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# 编译器密钥的用途是什么?


基础教程推荐
- 将数据集转换为列表 2022-01-01
- 更新 Visual Studio 中的 DataSet 结构以匹配新的 SQL 数据库结构 2022-01-01
- 在 VB6 或经典 ASP 中使用 .NET 2022-01-01
- 如果条件可以为空 2022-01-01
- 重新排序 WPF TabControl 中的选项卡 2022-01-01
- 从 C# 控制相机设备 2022-01-01
- SonarQube C# 分析失败“不是指针的有效行偏移" 2022-01-01
- Mono https webrequest 失败并显示“身份验证或解密失败" 2022-01-01
- C# 9 新特性——record的相关总结 2023-04-03
- 获取C#保存对话框的文件路径 2022-01-01