(March 15, 2015 at 6:41 pm)bennyboy Wrote:(March 15, 2015 at 10:52 am)IATIA Wrote: C# just makes large memory consuming programs, but it does run quick and it also is multi-platform.This is true. I think it's how the garbage-handling works. But as a programmer, it's nice not to have to allocate your own memory. How many times in C have I sprung a leak because I had a stupid 1-off error in setting up an array or something like that? Hint: it's non-zero.
Meh. Design your shit so it doesn't leak.
Yeah, I admit it can be a pain in the ass in all honesty - but it all has tradeoffs. Last thing I want happening is garbage collection during a timing-critical piece of code. There's no one correct tool. Use the tool that's best for the task.