This page contains general information about Methods in C# and how to use them

What is a Method?

A method is a block of code that performs a specific task. Think of it like a recipe - you give it ingredients (parameters), and it gives you back something (return value). Methods help you organize your code and make it reusable.

Identifying Methods

A method in code can be identified by these key elements:

For example, in this format:

static int AddNumbers(int num1, int num2)

Understanding the Main Method

Let's break down this important line of code:

static void Main(string[] args)

Access Modifiers