We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
public override void add_busChanged(__RSControl_busChangedEventHandler) <---- handler1 { bool flag; try { Monitor.Enter(this, ref flag); if (this.m_ConnectionPoint == null) { this.Init(); } __RSControl_SinkHelper __RSControl_SinkHelper = new __RSControl_SinkHelper(); int i = 0; this.m_ConnectionPoint.Advise((object)__RSControl_SinkHelper, ref i); __RSControl_SinkHelper.m_dwCookie = i; __RSControl_SinkHelper.m_busChangedDelegate = ; <----- handler1 this.m_aEventSinkHelpers.Add((object)__RSControl_SinkHelper); } finally { if (flag) { Monitor.Exit(this); } } }
IL_0048: ldarg <---- 1
The text was updated successfully, but these errors were encountered:
Does this still occur with the latest version? If so, please post the complete IL code of that method.
Sorry, something went wrong.
Assign names to parameters. Closed by 892996f, #81.
No branches or pull requests
public override void add_busChanged(__RSControl_busChangedEventHandler) <---- handler1
{
bool flag;
try
{
Monitor.Enter(this, ref flag);
if (this.m_ConnectionPoint == null)
{
this.Init();
}
__RSControl_SinkHelper __RSControl_SinkHelper = new __RSControl_SinkHelper();
int i = 0;
this.m_ConnectionPoint.Advise((object)__RSControl_SinkHelper, ref i);
__RSControl_SinkHelper.m_dwCookie = i;
__RSControl_SinkHelper.m_busChangedDelegate = ; <----- handler1
this.m_aEventSinkHelpers.Add((object)__RSControl_SinkHelper);
}
finally
{
if (flag)
{
Monitor.Exit(this);
}
}
}
IL_0048: ldarg <---- 1
The text was updated successfully, but these errors were encountered: