CSharp examples for Language Basics:Console
Output of a calculation
using System;//from w w w . j av a2 s .c om using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; class Program { static void Main(string[] args) { // Output of a calculation Console.WriteLine(1 + 1); } }