tags:

views:

24

answers:

1

Is it possible to programmatically from a silverlight app to get the runtime information of silverlight?

Note: that does not include making a call out to javascript

A: 

If you want to get the runtime & build version for a Silverlight app from inside the app you can use the Environment.Version & Deployment.RuntimeVersion

http://mokosh.co.uk/post/2009/09/14/silverlight-getting-runtime-version-programmatically/

AWC