Microsoft Visual C# 2008 Reducing number of loaded dlls

后端 未结 7 1265
萌比男神i
萌比男神i 2020-12-30 03:39

How can I reduce the number of loaded dlls When debugging in Visual C# 2008 Express Edition?

When running a visual C# project in the debugger I get an OutOfMemoryE

7条回答
  •  无人及你
    2020-12-30 03:58

    A question: Are all elements of your array occupied? If many of them contain some default value then maybe you could reduce memory consumption using an implementation of a sparse array that only allocates memory for the non-default values. Just a thought.

提交回复
热议问题