Language: VB.NET 3.5
IL opcodes:
718 ldarg.0
719 callvirt System.Windows.Forms.Button RClient.RClient::get_cmd1()
724 ldarg.0
725 ldfld System.String[] RClient.RClient::ButtonStrings
730 ldc.i4.5
731 ldelem.ref
732 callvirt System.Void System.Windows.Forms.ButtonBase::set_Text(System.String)
737 ldarg.0
Corresponds to:
Me.cmd1.Text = Me.ButtonStrings(5)
At least I believe it does. What changes to the IL would I have to make to reflect this instead:
Me.cmd1.Text = "some string"