C# Code for finding version:
using System;
class Version
{
public static void Main()
{
Console.WriteLine();
Console.WriteLine(".Net Framework Version {0}",Environment.Version.ToString());
}
}
Inner Gold - Alchemy and Psychology
-
Alchemy occupies a unique place in the collective psyche of humankind.
Swiss psychiatrist and psychologist Jung discovered alchemy and devoted the
remai...
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