I have the following C # code.
public void HelloWorld() { Add(2, 2); } public void Add(int a, int b) {
He produces the next CIL
.method public hidebysig instance void HelloWorld() cil managed {
Now, what I don't understand is a line at offset 0001:
ldarg.0
I know what this operation code is for, but I donβt understand why it is used in this method, since there are no arguments, right?
Does anyone know why? :)
animaonline
source share