class HtmlContainerInt, Crash Null pointer exception :
public void Clear()
{
_hoverBoxes.Clear(); <<< === PTR _hoverBoxes is NULL
...
}
We need to insert at the beginning:
if(_hoverBoxes != null)
Thanks
public void Clear()
{
_hoverBoxes.Clear(); <<< === PTR _hoverBoxes is NULL
...
}
We need to insert at the beginning:
if(_hoverBoxes != null)
Thanks