Cosmos/source/Indy.IL2CPU/CustomImplementation/System/DelegateImpl.cs
2007-10-26 15:03:48 +00:00

13 lines
428 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Indy.IL2CPU.CustomImplementation.System {
public static unsafe class DelegateImpl {
[MethodAlias(Name = "System.Boolean System.Delegate.InternalEqualTypes(System.Object,System.Object)")]
public static bool InternalEqualTypes(uint* aDelegate1, uint* aDelegate2) {
return *aDelegate1 == *aDelegate2;
}
}
}