Files
linux-packaging-mono/mcs/class/System/ReferenceSources/EnvironmentHelpers.cs

12 lines
141 B
C#
Raw Normal View History

namespace System
{
internal static class EnvironmentHelpers
{
internal static bool IsWindowsVistaOrAbove()
{
return true;
}
}
}