C# Code for finding version:
using System;
class Version
{
public static void Main()
{
Console.WriteLine();
Console.WriteLine(".Net Framework Version {0}",Environment.Version.ToString());
}
}
Google’s investments run deep in the heart of Texas.
-
We’ve called Texas home for more than 15 years, and today, we're announcing
a new $40 billion investment in the Lone Star State through 2027. This
funding ...
2 days 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