Error:
```
Method not found: 'Void TheArtOfDev.HtmlRenderer.Core.HtmlContainerInt.SetMargins(Int32)'.
Instances of this error (10)
1. Hide Call Stack
at TheArtOfDev.HtmlRenderer.WinForms.HtmlContainer..ctor()
at TheArtOfDev.HtmlRenderer.WinForms.HtmlPanel..ctor() in myFolder\HtmlRenderer.WinForms\HtmlPanel.cs:line 121
```
I was using HTML-Renderer for few weeks now and I have no problems before, but now instead of opening design of Forms with HtmlPanel in it, this weird error is there for each HtmlPanel in Form.
Application can be started and debugged step by step to HtmlContainer line 56: `_htmlContainerInt.SetMargins(0);` to HtmlContainerInt line 454:
```
public void SetMargins(int value)
{
if (value > -1)
_marginBottom = _marginLeft = _marginTop = _marginRight = value;
}
```
Everything is OK application run normally. At run time if found method as expected, even `F12 Go To Definition` work.
But designer not work, I already try to clean solution, rebuild, reboot system.
Thanks in advance for your help.
[I already post this on github.com](https://github.com/ArthurHub/HTML-Renderer/issues/60)