[corert] Import System.Threading.ThreadPoolBoundHandle
[mono.git] / mcs / class / corlib / corert / AddrofIntrinsics.cs
1
2 using System;
3
4 namespace System.Runtime.InteropServices
5 {
6         internal static class AddrofIntrinsics
7         {
8                 // This method is implemented elsewhere in the toolchain
9                 internal static IntPtr AddrOf<T>(T ftn)
10                 {
11                         return Marshal.GetFunctionPointerForDelegate<T>(ftn);
12                 }
13         }
14 }