C# Lesson 12
How to use Methods.
In this lesson we are going to learn about Methods.
using System;
namespace Lesson12
{
class Methods
{
// A method needs to be delared inside a class
static void Main()
{
RunProgram();
}
static void RunProgram()
{...
Continue Reading