Add comment. Nits.
This commit is contained in:
parent
21d34c1e6f
commit
02cd5d3e70
1 changed files with 3 additions and 3 deletions
|
@ -7,10 +7,10 @@ namespace ARMeilleure.Translation
|
||||||
{
|
{
|
||||||
class DelegateInfo
|
class DelegateInfo
|
||||||
{
|
{
|
||||||
private Delegate _dlg;
|
private readonly Delegate _dlg; // Ensures that this delegate will not be garbage collected.
|
||||||
|
|
||||||
public IntPtr FuncPtr { get; private set; }
|
public IntPtr FuncPtr { get; }
|
||||||
public OperandType RetType { get; private set; }
|
public OperandType RetType { get; }
|
||||||
|
|
||||||
public DelegateInfo(Delegate dlg)
|
public DelegateInfo(Delegate dlg)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue