C# Code for finding version:
using System;
class Version
{
public static void Main()
{
Console.WriteLine();
Console.WriteLine(".Net Framework Version {0}",Environment.Version.ToString());
}
}
You can now have more fluid and expressive conversations when you go Live
with Search.
-
When you go Live with Search, you can have a back-and-forth voice
conversation in AI Mode to get real-time help and quickly find relevant
sites across the ...
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