C# Program to add two numbers using the static method
In this program, You will learn how to add two numbers using the static method in C#.
30 = 20 + 10
40 = 20 + 20
Example: How to add two numbers using the static method in C#.
using System;
public class Test
{
static int x, y, z;
static void input()
{
Console.Write("Enter two numbers:");
x = Convert.ToInt32(Console.ReadLine());
y = Convert.ToInt32(Console.ReadLine());
}
static void add()
{
z = x + y;
}
static void result()
{
Console.WriteLine("Sum is:" + z);
}
public static void Main(string[] args)
{
input();
add();
result();
}
}
Output:
Enter two numbers:10
20
Sum is:30