DebuggerStepThroughAttribute.cs 455 B

1234567891011121314151617181920212223
  1. //
  2. // System.Diagnostics.DebuggerStepThroughAttribute.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 DebuggerStepThroughAttribute : Attribute
  15. {
  16. public DebuggerStepThroughAttribute ()
  17. : base ()
  18. {
  19. }
  20. }
  21. }