Is there something avai开发者_StackOverflow社区lable that tells me what .NET version I am using and whether it is .NET 2.0 SP1?
Thanks
You can use Environment.Version
to find the version of the CLR you are running on.
This can be checked against the list of framework version numbers. For .NET 2.0 SP1 you'd be looking to match 2.0.50727.1433.
精彩评论