There are few good ways available to find out which .Net Version is installed in any given environment. You can try one of the following: - Manually you can check it via registry editor (REGEDIT.exe). Refer https://msdn.microsoft.com/en-us/library/hh925568(v=vs.110).aspx - Using C#.Net you can use System.Environment class to get the related info: private static void GetFrameworkVersionInfo() { Console.WriteLine("Version: " + Environment.Version.ToString()); } - Using Visual Studio Command...(read more)
↧