OperatingSystem.OperatingSystem Constructor
.NET Framework 3.0
Initializes a new instance of the OperatingSystem class, using the specified platform identifier value and version object.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Assembly: mscorlib (in mscorlib.dll)
public OperatingSystem ( PlatformID platform, Version version )
public function OperatingSystem ( platform : PlatformID, version : Version )
Not applicable.
Parameters
- platform
One of the PlatformID values that indicates the operating system platform.
- version
A Version object that indicates the version of the operating system.
The following code example creates objects of the OperatingSystem class with selected values for the Platform and Version properties.
// Example for the OperatingSystem constructor and the // OperatingSystem::ToString( ) method. using namespace System; // Create and display an OperatingSystem object. void BuildOSObj( PlatformID pID, Version^ ver ) { OperatingSystem^ os = gcnew OperatingSystem( pID,ver ); Console::WriteLine( " {0}", os->ToString() ); } void BuildOperatingSystemObjects() { // The Version object does not need to correspond to an // actual OS version. Version^ verNull = gcnew Version; Version^ verMajMin = gcnew Version( 3,11 ); Version^ verMMBld = gcnew Version( 5,25,625 ); Version^ verMMBVer = gcnew Version( 5,6,7,8 ); Version^ verString = gcnew Version( "3.5.8.13" ); // All PlatformID members are shown here. BuildOSObj( PlatformID::Win32NT, verNull ); BuildOSObj( PlatformID::Win32S, verMajMin ); BuildOSObj( PlatformID::Win32Windows, verMMBld ); BuildOSObj( PlatformID::WinCE, verMMBVer ); BuildOSObj( PlatformID::Win32NT, verString ); } int main() { Console::WriteLine( "This example of the OperatingSystem constructor and \n" "OperatingSystem::ToString( ) generates the following " "output.\n" ); Console::WriteLine( "Create and display several different " "OperatingSystem objects:\n" ); BuildOperatingSystemObjects(); Console::WriteLine( "\nThe OS version of the host computer is:\n\n {0}", Environment::OSVersion->ToString() ); } /* This example of the OperatingSystem constructor and OperatingSystem::ToString( ) generates the following output. Create and display several different OperatingSystem objects: Microsoft Windows NT 0.0 Microsoft Win32S 3.11 Microsoft Windows 98 5.25.625 Microsoft Windows CE 5.6.7.8 Microsoft Windows NT 3.5.8.13 The OS version of the host computer is: Microsoft Windows NT 5.1.2600.0 */
// Example for the OperatingSystem constructor and the
// OperatingSystem.ToString( ) method.
import System.*;
class OpSysConstructDemo
{
// Create and display an OperatingSystem object.
static void BuildOSObj(PlatformID pID, Version ver)
{
OperatingSystem os = new OperatingSystem(pID, ver);
Console.WriteLine(" {0}", os.ToString());
} //BuildOSObj
static void BuildOperatingSystemObjects()
{
// The Version object does not need to correspond to an
// actual OS version.
Version verNull = new Version();
Version verMajMin = new Version(3, 11);
Version verMMBld = new Version(5, 25, 625);
Version verMMBVer = new Version(5, 6, 7, 8);
Version verString = new Version("3.5.8.13");
// All PlatformID members are shown here.
BuildOSObj(PlatformID.Win32NT, verNull);
BuildOSObj(PlatformID.Win32S, verMajMin);
BuildOSObj(PlatformID.Win32Windows, verMMBld);
BuildOSObj(PlatformID.WinCE, verMMBVer);
BuildOSObj(PlatformID.Win32NT, verString);
} //BuildOperatingSystemObjects
public static void main(String[] args)
{
Console.WriteLine(("This example of the OperatingSystem constructor "
+ "and \nOperatingSystem.ToString( ) "
+ "generates the following output.\n"));
Console.WriteLine(("Create and display several different "
+ "OperatingSystem objects:\n"));
BuildOperatingSystemObjects();
Console.WriteLine(
"\nThe OS version of the host computer is:\n\n {0}",
Environment.get_OSVersion().ToString());
} //main
} //OpSysConstructDemo
/*
This example of the OperatingSystem constructor and
OperatingSystem.ToString( ) generates the following output.
Create and display several different OperatingSystem objects:
Microsoft Windows NT 0.0
Microsoft Win32S 3.11
Microsoft Windows 98 5.25.625
Microsoft Windows CE 5.6.7.8
Microsoft Windows NT 3.5.8.13
The OS version of the host computer is:
Microsoft Windows NT 5.1.2600.0
*/
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.