12 lines
141 B
C#
12 lines
141 B
C#
|
|
||
|
namespace System
|
||
|
{
|
||
|
internal static class EnvironmentHelpers
|
||
|
{
|
||
|
internal static bool IsWindowsVistaOrAbove()
|
||
|
{
|
||
|
return true;
|
||
|
}
|
||
|
}
|
||
|
}
|