C# Code for finding version:
using System;
class Version
{
public static void Main()
{
Console.WriteLine();
Console.WriteLine(".Net Framework Version {0}",Environment.Version.ToString());
}
}
I Want to Live in This Casual-Cool Combo
-
[image: Casual Weekend Winter Look — Transitional Spring Outfit Idea –
Josefine HJ In a Ribbed Beige Sweater and Cuffed Loose White Jeans]
Photo via: *@jose...
2 years 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