C# Code for finding version:
using System;
class Version
{
public static void Main()
{
Console.WriteLine();
Console.WriteLine(".Net Framework Version {0}",Environment.Version.ToString());
}
}
5 gardening tips you can try right in Search
-
We’ve rounded up the top ways you can use Google’s AI Mode, Search Live and
Shopping to help your plants thrive.
13 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