top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How to detect WindowsPhone OS version using c#?

+3 votes
261 views
How to detect WindowsPhone OS version using c#?
posted Jul 2, 2015 by Karthi Kumar

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

Please use this code in C#:

string OSVersion = Environment.OSVersion.Version.ToString();
MessageBox.Show(OSVersion);
answer Jul 3, 2015 by Jdk
...