OperatingSystem クラス
アセンブリ: mscorlib (mscorlib.dll 内)

<SerializableAttribute> _ <ComVisibleAttribute(True)> _ Public NotInheritable Class OperatingSystem Implements ICloneable, ISerializable
[SerializableAttribute] [ComVisibleAttribute(true)] public sealed class OperatingSystem : ICloneable, ISerializable
[SerializableAttribute] [ComVisibleAttribute(true)] public ref class OperatingSystem sealed : ICloneable, ISerializable

OperatingSystem クラスには、オペレーティング システムに関する情報が格納されます。たとえば、Environment.OSVersion プロパティは、OperatingSystem オブジェクトで現在実行中のオペレーティング システムに関する情報を返します。
OperatingSystem クラスは、一般的な用途でオペレーティング システムを記述する手段としてデザインされているわけではないため、OperatingSystem クラスから、より包括的な型を派生することはできません。オペレーティング システムに関するその他の情報を格納する型が必要な場合は、独自の型を作成し、OperatingSystem 型のフィールドと追加フィールド、必要なプロパティまたはメソッドを含めます。

選択した値を Platform プロパティと Version プロパティに使用して、OperatingSystem クラスのオブジェクトを作成するコード例を次に示します。
' Example for the OperatingSystem constructor and the ' OperatingSystem.ToString( ) method. Imports System Imports Microsoft.VisualBasic Module OpSysConstructDemo ' Create and display an OperatingSystem object. Sub BuildOSObj( pID As PlatformID, ver As Version ) Dim os As New OperatingSystem( pID, ver ) Console.WriteLine( " {0}", os.ToString( ) ) End Sub Sub BuildOperatingSystemObjects( ) ' The Version object does not need to correspond to an ' actual OS version. Dim verNull As New Version( ) Dim verMajMin As New Version( 3, 11 ) Dim verMMBld As New Version( 5, 25, 625 ) Dim verMMBVer As New Version( 5, 6, 7, 8 ) Dim verString As 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 ) End Sub Sub Main( ) Console.WriteLine( _ "This example of the OperatingSystem constructor " & _ "and " & vbCrLf & "OperatingSystem.ToString( ) " & _ "generates the following output." & vbCrLf ) Console.WriteLine( _ "Create and display several different " & _ "OperatingSystem objects:" & vbCrLf ) BuildOperatingSystemObjects( ) Console.WriteLine(vbCrLf & _ "The OS version of the host computer is: " & _ vbCrLf & vbCrLf & " {0}", _ Environment.OSVersion.ToString( ) ) End Sub End Module ' 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. using 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( ) ); } 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 ); } public static void Main( ) { 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.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. 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 */

System.OperatingSystem


Windows 98, Windows 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
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


OperatingSystem コンストラクタ
アセンブリ: mscorlib (mscorlib.dll 内)

Dim platform As PlatformID Dim version As Version Dim instance As New OperatingSystem(platform, version)
- platform
オペレーティング システム プラットフォームを示す PlatformID 値のいずれか。


選択した値を Platform プロパティと Version プロパティに使用して、OperatingSystem クラスのオブジェクトを作成するコード例を次に示します。
' Example for the OperatingSystem constructor and the ' OperatingSystem.ToString( ) method. Imports System Imports Microsoft.VisualBasic Module OpSysConstructDemo ' Create and display an OperatingSystem object. Sub BuildOSObj( pID As PlatformID, ver As Version ) Dim os As New OperatingSystem( pID, ver ) Console.WriteLine( " {0}", os.ToString( ) ) End Sub Sub BuildOperatingSystemObjects( ) ' The Version object does not need to correspond to an ' actual OS version. Dim verNull As New Version( ) Dim verMajMin As New Version( 3, 11 ) Dim verMMBld As New Version( 5, 25, 625 ) Dim verMMBVer As New Version( 5, 6, 7, 8 ) Dim verString As 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 ) End Sub Sub Main( ) Console.WriteLine( _ "This example of the OperatingSystem constructor " & _ "and " & vbCrLf & "OperatingSystem.ToString( ) " & _ "generates the following output." & vbCrLf ) Console.WriteLine( _ "Create and display several different " & _ "OperatingSystem objects:" & vbCrLf ) BuildOperatingSystemObjects( ) Console.WriteLine(vbCrLf & _ "The OS version of the host computer is: " & _ vbCrLf & vbCrLf & " {0}", _ Environment.OSVersion.ToString( ) ) End Sub End Module ' 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. using 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( ) ); } 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 ); } public static void Main( ) { 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.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. 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 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
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


OperatingSystem プロパティ

名前 | 説明 | |
---|---|---|
![]() ![]() | ServicePack | この OperatingSystem オブジェクトが表す Service Pack のバージョンを取得します。 |
![]() ![]() | VersionString | プラットフォーム ID、バージョン、およびオペレーティング システムに現在インストールされている Service Pack の連結された文字列形式を取得します。 |

OperatingSystem メソッド

名前 | 説明 | |
---|---|---|
![]() | Clone | このインスタンスと同一の OperatingSystem オブジェクトを作成します。 |
![]() | Equals | オーバーロードされます。 2 つの Object インスタンスが等しいかどうかを判断します。 ( Object から継承されます。) |
![]() | GetHashCode | 特定の型のハッシュ関数として機能します。GetHashCode は、ハッシュ アルゴリズムや、ハッシュ テーブルのようなデータ構造での使用に適しています。 ( Object から継承されます。) |
![]() | GetObjectData | System.Runtime.Serialization.SerializationInfo オブジェクトに、このインスタンスを逆シリアル化するために必要なデータを格納します。 |
![]() | GetType | 現在のインスタンスの Type を取得します。 ( Object から継承されます。) |
![]() | ReferenceEquals | 指定した複数の Object インスタンスが同一かどうかを判断します。 ( Object から継承されます。) |
![]() | ToString | オーバーライドされます。 この OperatingSystem オブジェクトの値を等価の文字列形式に変換します。 |

OperatingSystem メンバ
バージョンやプラットフォーム ID など、オペレーティング システムについての情報を表します。このクラスは継承できません。
OperatingSystem データ型で公開されるメンバを以下の表に示します。


名前 | 説明 | |
---|---|---|
![]() ![]() | ServicePack | この OperatingSystem オブジェクトが表す Service Pack のバージョンを取得します。 |
![]() ![]() | VersionString | プラットフォーム ID、バージョン、およびオペレーティング システムに現在インストールされている Service Pack の連結された文字列形式を取得します。 |

名前 | 説明 | |
---|---|---|
![]() | Clone | このインスタンスと同一の OperatingSystem オブジェクトを作成します。 |
![]() | Equals | オーバーロードされます。 2 つの Object インスタンスが等しいかどうかを判断します。 (Object から継承されます。) |
![]() | GetHashCode | 特定の型のハッシュ関数として機能します。GetHashCode は、ハッシュ アルゴリズムや、ハッシュ テーブルのようなデータ構造での使用に適しています。 (Object から継承されます。) |
![]() | GetObjectData | System.Runtime.Serialization.SerializationInfo オブジェクトに、このインスタンスを逆シリアル化するために必要なデータを格納します。 |
![]() | GetType | 現在のインスタンスの Type を取得します。 (Object から継承されます。) |
![]() | ReferenceEquals | 指定した複数の Object インスタンスが同一かどうかを判断します。 (Object から継承されます。) |
![]() | ToString | オーバーライドされます。 この OperatingSystem オブジェクトの値を等価の文字列形式に変換します。 |

Weblioに収録されているすべての辞書からOperating_systemを検索する場合は、下記のリンクをクリックしてください。

- Operating_systemのページへのリンク