CommonIsPosixEnvironment Field

Determines if the current system is a POSIX style environment.

Definition

Namespace: Gemstone
Assembly: Gemstone.Common (in Gemstone.Common.dll) Version: 1.0.138 -- Release Build+dacff88cce10d287c7434d5aac59c76948c712b1
public static readonly bool IsPosixEnvironment

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.

See Also