Chapter 3
We Have Our Methods
IN THIS CHAPTER
Defining a method
Passing arguments to a method
Getting results back
Reviewing the WriteLine() method
Programmers need to be able to break large programs into smaller chunks that are easy to handle. For example, the programs contained in previous chapters of this minibook reach the limit of the amount of programming information a person can digest at one time.
Defining and Using a Method
Consider the following example:
class Example{ public int anInt; // Nonstatic public static int staticInt // Static public void InstanceMethod() // Nonstatic { Console.WriteLine("this is an instance method"); } public static void ClassMethod() // ...
Get C# 7.0 All-in-One For Dummies now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.