On the lighter side : The reason why Windows skipped version 9

By | October 2, 2014

A lot of you might be wondering why Windows skipped a version.   I guess the code below will explain.

public void VerifyOperatingSystemVersion(string oSVersion)
{
    if (oSVersion.Contains("Windows 9"))
    {
        //This is Windows 95 or 98
    }
    else
    {
        //Other Version of Windows 2000, Windows XP
    }
}

 

This is it in action

Windows 98

Recommended

3 thoughts on “On the lighter side : The reason why Windows skipped version 9

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.