Reputation: 4266
I want to know how Scott shown the version of KRE used on the application that he launched:
I know how show .NET version (System.Environment.Version) but this is the KRE version.
I've found this on his blog and I think he did that on events. This is his blog page where he did it: scott blog
Upvotes: 0
Views: 49
Reputation: 28425
This is how you get the runtime version programmatically.
If you just want to see it rather than using it in code, you might consider using the RuntimeInfo
middleware from the Diagnostics
package. See this sample
Upvotes: 1