| 12345678910111213141516171819 |
- using System;
- using System.Runtime.InteropServices;
- namespace ARMeilleure.Translation
- {
- sealed class DelegateInfo
- {
- private readonly Delegate _dlg; // Ensure that this delegate will not be garbage collected.
- public IntPtr FuncPtr { get; }
- public DelegateInfo(Delegate dlg)
- {
- _dlg = dlg;
- FuncPtr = Marshal.GetFunctionPointerForDelegate<Delegate>(dlg);
- }
- }
- }
|