Find installed version of .net framework in your PC

Hello guys, today we will discuss regarding how to Find installed version of .net framework in your PC.

There are two ways to Find installed version of .net framework in your PC.

1)       Using JavaScript
Limitation: this javascript code is used to fetch Framework from IE only.
2)       Using C# Code

Environment.Version property of .Net framework. For example, this simple C# source code can be compiled to a .Net console program that shows .Net framework version installed:

 

using System;
class Version
{
  public static void Main()
  {
    Console.WriteLine();
    Console.WriteLine(".Net Framework Version {0}",Environment.Version.ToString());
  }
}

 

You should also refer this link :

Leave a Reply