|
|
вернуться в форумОбщий форумС# and Memory Is it possible to solve some problems using less then 1 MB in C# ? I tried 1010 problem to solve, but less then 941 KB I cannot do... :( it's bad... May be there are some tricks to lower memory consumption ? Thx. PS If code neded - just say, I will show.. maybe some ideas will appear. Edited by author 03.08.2010 21:17 Re: С# and Memory You can run garbage collector manually: GC.Collect(); It helped me to solve problem 1269 where memory is very limited. But don't do so too often - this trick eats much time! Re: С# and Memory Thanks for idea! Is it possible to solve problem @Stacks@ using this trick? Have you tried? Re: С# and Memory give me a look. |
|
|