CSharp examples for Language Basics:string
Joining two texts using plus sign
using System;/*from w w w . j a va 2 s . c om*/ using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; class Program { static void Main(string[] args) { // Normal text Console.WriteLine("I have started to program"); // Also normal text Console.WriteLine(" in C#."); // Joining two texts using plus sign Console.WriteLine("I have started to program" + " in C#."); } }