3GB linker option for C# app?

  • Thread starter Thread starter Zhenxin Li
  • Start date Start date
Z

Zhenxin Li

Hello,

Is there a 3GB linker option for C# app like C++? Thanks!

Best regards,
Zhenxin Li
 
gs said:
what about 64 bit dotnet with c# on 64 bit windows platform?

If the assembly is compiled for AnyCPU or x86 then the LARGEADDRESSAWARE
flag will not be set. You would have to set it manually to utilize more
than 2GB on 32bit Windows.

On 64bit Windows a program compiled with AnyCPU will run in a 64bit process,
and won't have this memory limitation.

David
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top