CSharp examples for Language Basics:Hello World
Output math calculation to the console
using System;/*from w w w. j a v a2 s.c o m*/ class Test { static void Main() { int x = 12 * 30; Console.WriteLine (x); } }