Content deleted Content added
→Creating objects: copy editing |
→Invoking instance methods: copy editing |
||
Line 141:
====Invoking instance methods====
Instance methods are invoked
<syntaxhighlight lang="csharp">
myCar.Move(3);
</syntaxhighlight>
<syntaxhighlight lang="csharp">
ldloc.0 // Load the object "myCar" on the stack
|