Posted by: Amit Andharia | January 2, 2009

How to find .NET Version Programaticallly?

 It’s very simple. Here is the code snippet for the same.

VB.NET

Response.Write(System.Environment.Version.ToString())

C#

Response.Write(System.Environment.Version.ToString());


Leave a comment

Categories