OperatingSystem.ServicePack Propriedade
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Obtém a versão do service pack representada por esse objeto OperatingSystem.
public:
property System::String ^ ServicePack { System::String ^ get(); };
public string ServicePack { get; }
member this.ServicePack : string
Public ReadOnly Property ServicePack As String
Valor da propriedade
A versão do service pack, se houver suporte para service packs e pelo menos um estiver instalado; caso contrário, uma cadeia de caracteres vazia ("").
Exemplos
O exemplo de código a seguir demonstra a ServicePack propriedade .
// This example demonstrates the OperatingSystem.ServicePack property.
using namespace System;
int main()
{
OperatingSystem^ os = Environment::OSVersion;
String^ sp = os->ServicePack;
Console::WriteLine( "Service pack version = \"{0}\"", sp );
}
/*
This example produces the following results:
Service pack version = "Service Pack 1"
*/
// This example demonstrates the OperatingSystem.ServicePack property.
using System;
class Sample
{
public static void Main()
{
OperatingSystem os = Environment.OSVersion;
String sp = os.ServicePack;
Console.WriteLine("Service pack version = \"{0}\"", sp);
}
}
/*
This example produces the following results:
Service pack version = "Service Pack 1"
*/
// This example demonstrates the OperatingSystem.ServicePack property.
open System
let os = Environment.OSVersion
let sp = os.ServicePack
printfn $"Service pack version = \"{sp}\""
// This example produces the following results:
// Service pack version = "Service Pack 1"
' This example demonstrates the OperatingSystem.ServicePack property.
Class Sample
Public Shared Sub Main()
Dim os As OperatingSystem = Environment.OSVersion
Console.WriteLine("Service pack version = ""{0}""", os.ServicePack)
End Sub
End Class
'
'This example produces the following results:
'
'Service pack version = "Service Pack 1"
'
Comentários
Um service pack é usado para distribuir atualizações de software para o sistema operacional no qual ele está instalado. No entanto, nem todo sistema operacional usa service packs.
A versão do service pack, se disponível, já está formatada corretamente para exibição.