OperatingSystem.VersionString Proprietà
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene la rappresentazione di stringa concatenata dell'identificatore della piattaforma, della versione e del service pack attualmente installati nel sistema operativo.
public:
property System::String ^ VersionString { System::String ^ get(); };
public string VersionString { get; }
member this.VersionString : string
Public ReadOnly Property VersionString As String
Rappresentazione di stringa dei valori restituiti dalle proprietà Platform, Version e ServicePack.
Nell'esempio di codice seguente viene illustrata la VersionString proprietà .
// This example demonstrates the VersionString property.
using namespace System;
int main()
{
OperatingSystem^ os = Environment::OSVersion;
// Display the value of OperatingSystem.VersionString. By default, this is
// the same value as OperatingSystem.ToString.
Console::WriteLine( L"This operating system is {0}", os->VersionString );
return 0;
}
/*
This example produces the following results:
This operating system is Microsoft Windows NT 5.1.2600.0 Service Pack 1
*/
// This example demonstrates the VersionString property.
using System;
class Sample
{
public static void Main()
{
OperatingSystem os = Environment.OSVersion;
// Display the value of OperatingSystem.VersionString. By default, this is
// the same value as OperatingSystem.ToString.
Console.WriteLine("This operating system is {0}", os.VersionString);
}
}
/*
This example produces the following results:
This operating system is Microsoft Windows NT 5.1.2600.0 Service Pack 1
*/
// This example demonstrates the VersionString property.
open System
let os = Environment.OSVersion
// Display the value of OperatingSystem.VersionString. By default, this is
// the same value as OperatingSystem.ToString.
printfn $"This operating system is {os.VersionString}"
// This example produces the following results:
// This operating system is Microsoft Windows NT 5.1.2600.0 Service Pack 1
' This example demonstrates the VersionString property.
Class Sample
Public Shared Sub Main()
Dim os As OperatingSystem = Environment.OSVersion
' Display the value of OperatingSystem.VersionString. By default, this is
' the same value as OperatingSystem.ToString.
Console.WriteLine("This operating system is {0}", os.VersionString)
End Sub
End Class
'
'This example produces the following results:
'
'This operating system is Microsoft Windows NT 5.1.2600.0 Service Pack 1
Per impostazione predefinita, il valore restituito da VersionString è lo stesso del valore restituito dal ToString metodo . Tuttavia, un'implementazione del .NET Framework per una piattaforma diversa potrebbe restituire una stringa più appropriata per tale piattaforma.
Per un elenco di Windows versioni del sistema operativo e dei relativi numeri di versione corrispondenti, vedere Versione del sistema operativo.
Prodotto | Versioni |
---|---|
.NET | Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7 |
.NET Framework | 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8 |
.NET Standard | 2.0, 2.1 |