System.Runtime.CompilerServices.MethodImplAttribute
namespace System.Runtime.CompilerServices
{
public sealed class MethodImplAttribute : Attribute
{
public MethodCodeType MethodCodeType;
public MethodImplOptions Value { get; }
public MethodImplAttribute();
public MethodImplAttribute(short value);
public MethodImplAttribute(MethodImplOptions methodImplOptions);
}
}