0

I try to stream a file. I use a tab of byte.

byte[] byteBuffer=new byte[iSize];

with iSize value 1,459,126,243 and GC.GetTotalMemory at 2,489,816. I have 16 G of ram on my computer. What is the problem?

Ken Kin
  • 4,503
  • 3
  • 38
  • 76
Yeurl
  • 45
  • 11

1 Answers1

2

Are you compiling under x86 or x64? Unless youre runnibg under x64 you wont get the benefit of the 16gb of memory...

Immortal Blue
  • 1,691
  • 13
  • 27