如何在coreCLR中设置gcAllowVeryLargeObjects?

时间:2016-05-23 04:26:17

标签: asp.net-core coreclr

既然没有app.config,你如何将gcAllowVeryLargeObjects设置为true以便分配大数组呢?

1 个答案:

答案 0 :(得分:4)

您可以使用相应的environment variable;只记得使用COMPlus_前缀(例如COMPlus_gcAllowVeryLargeObjects=1)。

您可以在运行dotnet run之前从命令行进行设置,也可以将其添加到Visual Studio中项目属性的环境变量部分(或者可能添加注册表项)。