You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
255 B

  1. #if NET472
  2. namespace System.Diagnostics.CodeAnalysis
  3. {
  4. [AttributeUsage(AttributeTargets.Method, Inherited = false)]
  5. public sealed class DoesNotReturnAttribute : Attribute
  6. {
  7. public DoesNotReturnAttribute() { }
  8. }
  9. }
  10. #endif