标签: asp.net-core coreclr
既然没有app.config,你如何将gcAllowVeryLargeObjects设置为true以便分配大数组呢?
app.config
答案 0 :(得分:4)
您可以使用相应的environment variable;只记得使用COMPlus_前缀(例如COMPlus_gcAllowVeryLargeObjects=1)。
COMPlus_
COMPlus_gcAllowVeryLargeObjects=1
您可以在运行dotnet run之前从命令行进行设置,也可以将其添加到Visual Studio中项目属性的环境变量部分(或者可能添加注册表项)。