Tuesday, January 6, 2009

How to find .NET Version Programaticallly?

It's really 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());

No comments:

Post a Comment