在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
在.net4.5中新增一个配置项 “gcAllowVeryLargeObjects” ,msdn解释如下:
具体说就是在.net中,List,Arrary, Dictiontry, HashSet, HashTable等列表和数组结构的对象内存可以超过2GB了。 在.net4.5之前,这些对象如果使用内存超过2GB,就会报OutOfMemoryException(内存溢出)错误。 如何使用?在 ***.exe.config文件中 设置如下,如果不存在的话,可以手动创建下。 <?xml version="1.0" encoding="utf-8" ?> <configuration> <runtime> <gcAllowVeryLargeObjects enabled="true" /> </runtime> </configuration>
|
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论