.Net: How do I find the .NET version?

后端 未结 19 2458
我寻月下人不归
我寻月下人不归 2020-11-28 00:49

How do I find out which version of .NET is installed?

I\'m looking for something as simple as \"java -version\" that I can type at the command prompt and that tells

19条回答
  •  南方客
    南方客 (楼主)
    2020-11-28 01:19

    Just type the following in the command line:

    dir /b /ad /o-n %systemroot%\Microsoft.NET\Framework\v?.*
    

    Your dotnet version will be shown as the highest number.

提交回复
热议问题