The following code example demonstrates how to determine the version of the currently installed .NET Framework with the
Example
В | ![]() |
---|---|
// dotnet_ver.cpp // compile with: /clr using namespace System; int main() { Version^ version = Environment::Version; if (version) { int build = version->Build; int major = version->Major; int minor = version->Minor; int revision = Environment::Version->Revision; Console::Write(".NET Framework version: "); Console::WriteLine("{0}.{1}.{2}.{3}", build, major, minor, revision); } return 0; } |