966bba02bb
Former-commit-id: bb0468d0f257ff100aa895eb5fe583fb5dfbf900
14 lines
272 B
C#
14 lines
272 B
C#
|
|
using System;
|
|
|
|
namespace System.Runtime.InteropServices
|
|
{
|
|
internal static class AddrofIntrinsics
|
|
{
|
|
// This method is implemented elsewhere in the toolchain
|
|
internal static IntPtr AddrOf<T>(T ftn)
|
|
{
|
|
return Marshal.GetFunctionPointerForDelegate<T>(ftn);
|
|
}
|
|
}
|
|
} |