Do someone know if there is even a small difference using ldloc var
CIL instruction and ldloc.n
?
Considering this local var table in a method scope :
.locals init ([0] int32 a,
[1] int32 b)
Are those instructions:
ldloc.0
ldloc.1
better, worste or equal than:
ldloc a
ldloc b