Initial commit
[mono.git] / mcs / class / referencesource / System / services / monitoring / system / diagnosticts / PerformanceCounterCategoryType.cs
1 //------------------------------------------------------------------------------
2 // <copyright file="PerformanceCounterCategoryType.cs" company="Microsoft">
3 //     Copyright (c) Microsoft Corporation.  All rights reserved.
4 // </copyright>
5 //------------------------------------------------------------------------------
6 namespace System.Diagnostics {
7     public enum PerformanceCounterCategoryType {
8         Unknown = -1,
9         SingleInstance = 0,
10         MultiInstance = 1
11     }
12 }
13