Cosmos/source/Cosmos.Core.Plugs/System/NormalDelegateImpl.cs
Charles Betros 438ac960c1 Closes #11
2015-12-31 15:25:10 -06:00

17 lines
420 B
C#

using System;
using Cosmos.Core.Plugs.System.Assemblers;
using Cosmos.IL2CPU.Plugs.Assemblers;
namespace Cosmos.IL2CPU.Plugs.System
{
[Plug(Target = typeof(Delegate))]
public static class NormalDelegateImpl
{
[PlugMethod(Assembler = typeof(GetMulticastInvokeAssembler))]
public static IntPtr GetMulticastInvoke(Delegate aThis)
{
return IntPtr.Zero;
}
}
}