Call an object method: Difference between revisions

Content deleted Content added
m →‎With Lightweight Processes: Removed old portion of docstring.
Line 27:
myInstance := new myClass
myInstance.Method("bye")</lang>
=={{header|C_sharp|C#}}==
<lang csharp>// Static
MyClass.method(someParameter);
// Instance
myInstance.method(someParameter);
</lang>
=={{header|C++}}==
<lang cpp>// Static