tags:

views:

30

answers:

1

How do you determine what OS is running a Silverlight OOB application? Thanks!

+1  A: 

You can use Environment.OSVersion to get an OperatingSystem reference.

Once you have that, look at the Platform property, which returns a PlatformID Enumeration.

Reed Copsey
Works a charm, thanks!
BarrettJ