framework version number
-
How do I find my .Net Framework Version Number.Because I compile a console application on dos platform and I must do the csc alloy.Or if you know an other way to compile console application. Thank you.
-
How do I find my .Net Framework Version Number.Because I compile a console application on dos platform and I must do the csc alloy.Or if you know an other way to compile console application. Thank you.
Environment.Version[^] will return the Common Language Language Runtime version. RageInTheMachine9532 "...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome
-
How do I find my .Net Framework Version Number.Because I compile a console application on dos platform and I must do the csc alloy.Or if you know an other way to compile console application. Thank you.
System.Environment.Version Gives verion number of the framework "I find that the harder I work, the more luck I seem to have."
-
How do I find my .Net Framework Version Number.Because I compile a console application on dos platform and I must do the csc alloy.Or if you know an other way to compile console application. Thank you.
I know that it's been a long time since this post has been posted (no pun intended) but I feel that the proper way would be to use the:
Microsoft.CSharp.CSharpCodeProvider
class. This has several methods which will compile from strings or files, you can compile any form of .NET assembly using this. The equivalent VB is:Microsoft.VisualBasic.VBCodeProvider
Hope this enlightens you Ed