C# Code for finding version:
using System;
class Version
{
public static void Main()
{
Console.WriteLine();
Console.WriteLine(".Net Framework Version {0}",Environment.Version.ToString());
}
}
4 classic reads, newly available on Google Books
-
Every new year brings new books to read free of charge with Google Books.
12 hours ago
1 comment:
You should know that the Framework version is not equal to the CLR version. Regarding this fact your corresponding C# code isn't correct.
Post a Comment