tags:

views:

19

answers:

1

Simple question. :) Is there an equivalent to the Microsoft.VisualStudio.Package.Severity enumeration in the .NET Framework Base Class Library (BCL)?

A: 

Yes there is:

System.Diagnostics.TraceLevel
System.Diagnostics.SourceLevels

280Z28