C# Code for finding version:
using System;
class Version
{
public static void Main()
{
Console.WriteLine();
Console.WriteLine(".Net Framework Version {0}",Environment.Version.ToString());
}
}
We’re updating our plans for goo.gl links.
-
While we previously announced discontinuing support for all goo.gl URLs
after August 25, 2025, we've adjusted our approach in order to preserve
actively us...
1 day 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