[CompilerGenerated]
[DebuggerBrowsable(DebuggerBrowsableState.Never)]
[AccessedThroughProperty("SimpleButton1")]
private SimpleButton _SimpleButton1;
internal virtual SimpleButton SimpleButton1
{
[CompilerGenerated]
get
{
return this._SimpleButton1;
}
[MethodImpl(MethodImplOptions.Synchronized)]
[CompilerGenerated]
set
{
EventHandler value2;
value2 = SimpleButton1_Click;
SimpleButton simpleButton;
simpleButton = this._SimpleButton1;
if (simpleButton != null)
{
simpleButton.Click -= value2;
}
this._SimpleButton1 = value;
simpleButton = this._SimpleButton1;
if (simpleButton != null)
{
simpleButton.Click += value2;
}
}
}
When i decompile an vb.net application using ilspy, dnspy, just decompile, reflector, etc.
all the decompilers decompiles events in this format. so i cannot open the designer file. is there any other way to decompile properly?