<PackageReference Include="NUnit" Version="4.4.0-beta.2.1" />

OverloadResolutionPriorityAttribute

Specifies the priority of a member in overload resolution. When unspecified, the default priority is 0.
namespace System.Runtime.CompilerServices { [AttributeUsage(AttributeTargets.Constructor | AttributeTargets.Method | AttributeTargets.Property, AllowMultiple = false, Inherited = false)] internal sealed class OverloadResolutionPriorityAttribute : Attribute { public int Priority { get; } public OverloadResolutionPriorityAttribute(int priority) { Priority = priority; } } }