Files
sharpcompress/tests/SharpCompress.Test/OperatingSystemExtensions.cs
Adam Hathcock bc7a9684ba fmt
2025-10-14 13:24:18 +01:00

12 lines
280 B
C#

using System;
namespace SharpCompress.Test;
public static class OperatingSystemExtensions
{
public static bool IsWindows(this OperatingSystem os) =>
os.Platform == PlatformID.Win32NT
|| os.Platform == PlatformID.Win32Windows
|| os.Platform == PlatformID.Win32S;
}