Environment.OSVersion-Eigenschaft
Ruft ein OperatingSystem-Objekt ab, das den Bezeichner und die Versionsnummer der aktuellen Plattform enthält.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Public Shared ReadOnly Property OSVersion As OperatingSystem
'Usage
Dim value As OperatingSystem
value = Environment.OSVersion
public static OperatingSystem OSVersion { get; }
public:
static property OperatingSystem^ OSVersion {
OperatingSystem^ get ();
}
/** @property */
public static OperatingSystem get_OSVersion ()
public static function get OSVersion () : OperatingSystem
Eigenschaftenwert
Ein OperatingSystem-Objekt.
Ausnahmen
Ausnahmetyp | Bedingung |
---|---|
Diese Eigenschaft konnte die Version des Systems nicht ermitteln. – oder – Der abgerufene Plattformbezeichner ist kein Member von PlatformID. |
Hinweise
Hinweis zu Windows Mobile für Pocket PC, Windows Mobile für Smartphone, Windows CE: Das Versionsrevisionsfeld für diese Eigenschaft ist immer -1.
Beispiel
Im folgenden Codebeispiel wird der Plattformbezeichner und die Versionsnummer des Computers angezeigt, auf dem das Codebeispiel ausgeführt wird.
' Sample for the Environment.OSVersion property
Imports System
Class Sample
Public Shared Sub Main()
Console.WriteLine()
Console.WriteLine("OSVersion: {0}", Environment.OSVersion.ToString())
End Sub 'Main
End Class 'Sample
'
'This example produces the following results:
'
'OSVersion: Microsoft Windows NT 5.1.2600.0
'
// Sample for the Environment.OSVersion property
using System;
class Sample
{
public static void Main()
{
Console.WriteLine();
Console.WriteLine("OSVersion: {0}", Environment.OSVersion.ToString());
}
}
/*
This example produces the following results:
OSVersion: Microsoft Windows NT 5.1.2600.0
*/
// Sample for the Environment::OSVersion property
using namespace System;
int main()
{
Console::WriteLine();
Console::WriteLine( "OSVersion: {0}", Environment::OSVersion );
}
/*
This example produces the following results:
OSVersion: Microsoft Windows NT 5.1.2600.0
*/
// Sample for the Environment.OSVersion property
import System.*;
class Sample
{
public static void main(String[] args)
{
Console.WriteLine();
Console.WriteLine("OSVersion: {0}",
System.Convert.ToString(Environment.get_OSVersion()));
} //main
} //Sample
/*
This example produces the following results:
OSVersion: Microsoft Windows NT 5.1.2600.0
*/
Plattformen
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile für Pocket PC, Windows Mobile für Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.
Versionsinformationen
.NET Framework
Unterstützt in: 2.0, 1.1, 1.0
.NET Compact Framework
Unterstützt in: 2.0, 1.0