mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-09-26 08:52:20 +00:00
12 lines
280 B
C#
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;
|
|
}
|