C# Code for finding version:
using System;
class Version
{
public static void Main()
{
Console.WriteLine();
Console.WriteLine(".Net Framework Version {0}",Environment.Version.ToString());
}
}
The Secret to Hearing Your Spirit Guides | Lee Harris
-
This came up on my feed and was honestly something that I was expecting to
turn off after a few minutes but I found it really interesting so I'm
sharing...
6 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