|
|
|
|
|
by fleitz
4462 days ago
|
|
The only portable GUI code that I've ever seen work somewhat reliably is HTML/CSS. Everything else either implements a 3rd GUI, Swing, et al, or looks weird on a few of the platforms, GTK. Oddly enough the best cross-platform lib I've seen, Qt, is written in C++. C certainly isn't the be all and end all, however, it's far more portable, reusable, and linkable than C#. |
|
From a language perspective, why in the world would you want GUI code in C or C++? Both languages make it very easy to shoot your foot off and have no idea what happened. However, C can be very elegant if used for the right reasons. C# is safer, but also not perfect. That's where F# comes in. :)