Files
2026-06-04 11:42:34 +02:00

12 lines
329 B
C#

using System;
namespace System.Runtime.InteropServices
{
/// <summary>Allows an unmanaged method to call a managed method.</summary>
// Token: 0x020002EC RID: 748
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = false)]
public sealed class AllowReversePInvokeCallsAttribute : Attribute
{
}
}