本文介绍了.NET - 什么版本的框架是我目前在运行的(从C#)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
使用C#,什么是问你在运行哪个版本的.NET运行库的最佳方法是什么?
Using C#, what is the best way to ask the .NET Runtime which version you are running under?
推荐答案
使用 Environment.Version
。这样做的CLR的版本号目前正在运行的code和支持所有版本的CLR。
Use Environment.Version
. This has the version number of the CLR currently running your code and is supported on all versions of the CLR.
文件
这篇关于.NET - 什么版本的框架是我目前在运行的(从C#)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!