|
|
back to boardCommon BoardAndrew Hoffmann aka SKYDOS [Vladimir SU] С# and Memory [3] 3 Aug 2010 21:14 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 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! Thanks for idea! Is it possible to solve problem @Stacks@ using this trick? Have you tried? |
|
|