DEV Community

Discussion on: The beginning!

Collapse
 
tux0r profile image
tux0r

Even on Windows, the system API ("WinAPI") has a C interface, while C# abstracts too much of it. I usually prefer not having too much overhead. I admit that C# will probably give you a faster result - which will run notably slower and hog much more RAM. :-)

Thread Thread
 
deciduously profile image
Ben Lovy

Gotcha - that makes sense. I guess I hadn't really expected C# to come anywhere even close to C in terms of resource usage, but it seemed to be so well integrated with the operating system that it was a natural jumping off point.

Thanks!