I was trying to display the OS edition using System.Environment in my C# application.
Console.WriteLine("{0}",Environment.OSVersion);
But I see "Microsoft Windows NT 6.1.7600.0" on console,where as I was expecting something similar to "Windows 7 Professional". Why does OSVersion static method return this value?