Click or drag to resize

CommonIsPosixEnvironment Field

Determines if the current system is a POSIX style environment.

Namespace: GSF
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.256-beta+0e7e94d39a9b10efe7e26e3b8d5130afc0dd4d74
Syntax
public static readonly bool IsPosixEnvironment
View Source

Field Value

Boolean
Remarks

Since a .NET application compiled under Mono can run under both Windows and Unix style platforms, you can use this property to easily determine the current operating environment.

This property will return true for both MacOSX and Unix environments. Use the Platform property of the OSVersion to determine more specific platform type, e.g., MacOSX or Unix. Note that all flavors of Linux will show up as Unix.

See Also