|
#if !NETCOREAPP
|
|
namespace System.Diagnostics.CodeAnalysis
|
|
{
|
|
/// <summary>Applied to a method that will never return under any circumstance.</summary>
|
|
[AttributeUsage(AttributeTargets.Method, Inherited = false)]
|
|
internal sealed class DoesNotReturnAttribute : Attribute { }
|
|
}
|
|
#endif
|