DebuggerHiddenAttribute.cs 442 B

12345678910111213141516171819202122232425
  1. //
  2. // System.Diagnostics.DebuggerHiddenAttribute.cs
  3. //
  4. // Author: Duncan Mak ([email protected])
  5. //
  6. // (C) Ximian, Inc. http://www.ximian.com
  7. //
  8. using System;
  9. namespace System.Diagnostics
  10. {
  11. [AttributeUsage (AttributeTargets.Constructor |
  12. AttributeTargets.Method | AttributeTargets.Property)]
  13. [Serializable]
  14. public sealed class DebuggerHiddenAttribute : Attribute
  15. {
  16. public DebuggerHiddenAttribute ()
  17. : base ()
  18. {
  19. }
  20. }
  21. }