C# Code for finding version:
using System;
class Version
{
public static void Main()
{
Console.WriteLine();
Console.WriteLine(".Net Framework Version {0}",Environment.Version.ToString());
}
}
New AI-powered features help you connect with web content in Search and
Discover.
-
We’re introducing two new AI-powered features in Search and Discover to
help you connect with fresh content and links from across the web.
5 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