/Debugger/Debugger.Core/Tests/IgnoreOnExceptionAttribute.cs

http://github.com/icsharpcode/ILSpy · C# · 13 lines · 8 code · 3 blank · 2 comment · 0 complexity · bee480d4f352fb59806babf262e084c9 MD5 · raw file

  1. // Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt)
  2. // This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
  3. using System;
  4. namespace Debugger.Tests
  5. {
  6. [AttributeUsage(AttributeTargets.Property | AttributeTargets.Method | AttributeTargets.Class)]
  7. public class IgnoreOnExceptionAttribute: Attribute
  8. {
  9. }
  10. }