Computer Science Canada I need explaination for some concepts in C++ |
Author: | Castoris [ Fri Jun 29, 2012 2:15 pm ] |
Post subject: | I need explaination for some concepts in C++ |
Hello Could anyone explain to me what are ISO/IEC, C++/CLI and CLR? Thank's ![]() |
Author: | mirhagk [ Tue Jul 03, 2012 7:50 am ] |
Post subject: | RE:I need explaination for some concepts in C++ |
C++/CLI is C++ on the common langauge infrastructure, which means it can access .NET features. CLR is the common language runtime, which is the runtime for .NET langauges. ISO/IEC is the standards committee for programming languages. Basically once it becomes ISO/IEC standards, then anyone can write a compiler for it, and it's no longer a proprietary language (although features in an implementation can still be proprietary). The best place to get explanations for these, is wikipedia. |