mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
16 lines
515 B
C#
16 lines
515 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Cosmos.IL2CPU.Plugs;
|
|
|
|
namespace Cosmos.IL2CPU.CustomImplementation.System {
|
|
[Plug(Target = typeof(Delegate))]
|
|
public static unsafe class DelegateImpl {
|
|
//[PlugMethod(Signature = "System_Boolean__System_Delegate_InternalEqualTypes_System_Object__System_Object_")]
|
|
public static bool InternalEqualTypes(object a, object b) {
|
|
//return *aDelegate1 == *aDelegate2;
|
|
return false;
|
|
}
|
|
}
|
|
}
|