Printing multiple lines of text with string formatting. : Console « Development Class « C# / C Sharp
- C# / C Sharp
- Development Class
- Console
Printing multiple lines of text with string formatting.
using System;
public class Welcome4
{
public static void Main( string[] args )
{
Console.WriteLine( "{0}\n{1}", "Welcome to", "C# Programming!" );
}
}
Related examples in the same category