你如何使用后面的代码编写gcAllowVeryLargeObjects

时间:2014-02-28 19:13:35

标签: c# gcallowverylargeobjects

如何在后面的代码中用c#写这个? gcAllowVeryLargeObjects我不能使用配置文件。

下面是配置文件版本

   <configuration>
  <runtime>
    <gcAllowVeryLargeObjects enabled="true" />
  </runtime>
</configuration>

1 个答案:

答案 0 :(得分:3)

您不能,因为这会配置运行时的运行方式。在运行时执行时,无法修改运行时的垃圾收集器如何操作。您必须在运行时之前执行此操作,因此需要执行配置要求。