Files
view-by-distance-mklink-con…/Shared/Models/Stateless/Methods/IMethodName.cs
2022-05-08 12:28:50 -07:00

10 lines
228 B
C#

using System.Runtime.CompilerServices;
namespace View_by_Distance.Shared.Models.Stateless.Methods;
public interface IMethodName
{
static string? GetActualAsyncMethodName([CallerMemberName] string? name = null) => name;
}