S
Sonnich Jensen
Hi
I am developing a component, and during the process I have updated some events:
public delegate void eventPopup(object Sender, int SeriesNumber, int ChildNumber, ref List<string> MenuItems);
public event eventPopup OnPopup;
the ref menuitems is new
Now, when using the component, it ALWAYS want to create
private void comp_OnPopup(object Sender, int SeriesNumber, int ChildNumber)
{
}
Without the last variable (the ref'd menu items
So my guess is that it cashes something badly and never let go of it.
Any ideas?
WBR
Sonnich
I am developing a component, and during the process I have updated some events:
public delegate void eventPopup(object Sender, int SeriesNumber, int ChildNumber, ref List<string> MenuItems);
public event eventPopup OnPopup;
the ref menuitems is new
Now, when using the component, it ALWAYS want to create
private void comp_OnPopup(object Sender, int SeriesNumber, int ChildNumber)
{
}
Without the last variable (the ref'd menu items
So my guess is that it cashes something badly and never let go of it.
Any ideas?
WBR
Sonnich