OperatingSystem.ServicePack Property

Definition

Gets the service pack version represented by this OperatingSystem object.

C#
public string ServicePack { get; }

Property Value

The service pack version, if service packs are supported and at least one is installed; otherwise, an empty string ("").

Examples

The following code example demonstrates the ServicePack property.

C#
// 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"

*/

Remarks

A service pack is used to distribute software updates for the operating system on which it is installed. However, not every operating system uses service packs.

The service pack version, if available, is already correctly formatted for display.

Applies to

Product Versions
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.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, 4.8.1
.NET Standard 2.0, 2.1

See also