Make RuntimeInformation static internal, fix #312

This commit is contained in:
Andrey Akinshin 2016-12-03 13:39:51 +03:00
Родитель 5d8dd74e33
Коммит d279f675f9
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -19,7 +19,7 @@ using System.Management;
namespace BenchmarkDotNet.Portability
{
public class RuntimeInformation
internal static class RuntimeInformation
{
private static readonly bool isMono = Type.GetType("Mono.Runtime") != null; // it allocates a lot of memory, we need to check it once in order to keep Enging non-allocating!