Reference Proxy
This protection encodes and hides references to type/method/fields. Reference Proxy also generates methods, classes and folders with names picked randomly from the .NET Library.
private void InitializeComponent()
{
this.button1 = new Button();
base.SuspendLayout();
this.button1.Location = new Point(284, 190);
this.button1.Name = "button1";
this.button1.Size = new Size(206, 73);
this.button1.TabIndex = 0;
this.button1.Text = "button1";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += this.button1_Click;
base.AutoScaleDimensions = new SizeF(8f, 16f);
base.AutoScaleMode = AutoScaleMode.Font;
base.ClientSize = new Size(800, 450);
base.Controls.Add(this.button1);
base.Name = "Form1";
this.Text = "Form1";
base.ResumeLayout(false);
}Last updated
Was this helpful?
