laatzen/Common/OmniPlus/InspectionUI/Models/CompilerServices.cs
Stoyan Zlatev 22e7b947ba omni inspection:
- new acc
- new crrf
- psnr
2024-01-31 11:13:03 +01:00

17 lines
522 B
C#

namespace System.Runtime.CompilerServices
{
[AttributeUsage(AttributeTargets.Parameter, AllowMultiple = false, Inherited = false)]
public class CallerMemberNameAttribute : Attribute
{
}
[AttributeUsage(AttributeTargets.Parameter, AllowMultiple = false, Inherited = false)]
public class CallerFilePathAttribute : Attribute
{
}
[AttributeUsage(AttributeTargets.Parameter, AllowMultiple = false, Inherited = false)]
public class CallerLineNumberAttribute : Attribute
{
}
}