N
NetMasker
I used the following command to keep ~50Mbytes for a buffer:
Dim inBuf(50000000) As Byte
I used the buffer and now I want to release the 50Mbytes of memory that my
buffer used.
Is there any way to clear the buffer ???
I tried with the following but nothing happend:
Array.Clear(inBuf, 0, 50000000)
inBuf = Nothing
Thanks in advance
Dim inBuf(50000000) As Byte
I used the buffer and now I want to release the 50Mbytes of memory that my
buffer used.
Is there any way to clear the buffer ???
I tried with the following but nothing happend:
Array.Clear(inBuf, 0, 50000000)
inBuf = Nothing
Thanks in advance