mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-05 21:23:57 +00:00
12 lines
294 B
C#
12 lines
294 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;
|
|
}
|