12 lines
329 B
C#
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
|
|
{
|
|
}
|
|
}
|