12 lines
141 B
C#
Raw Normal View History

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