I have a Silverlight 5 application and needs to check the client side operating system type if it's 32bit or 64bit OS.
Environment Class dosen't help.
I used the code
//C# Code
var bitSize = IntPtr.Size * 8; // returns 32
But, it return 32 while the OS is Windows 7 Enterprise SP1 64 bit base on the system property. START>Computer>System Properties>
What is wrong with my code.