Learn C# The Hard Way
Sunday, December 13, 2015
2. Functions
IN:
using System;
public class Test
{
public static void Main()
{
WriteWorld();
}
static void WriteWorld()
{
Console.WriteLine("Hello World!");
}
}
OUT:
Hello World!
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment