What is the basic syntax of C# or C sharp? All Questions › Category: C#_language › What is the basic syntax of C# or C sharp? 0 Vote Up Vote Down Chetan Shidling asked 4 years ago I need short information. 1 Answers 0 Vote Up Vote Down Chetan Shidling answered 4 years ago The basic syntax of C# is using System; namespace HelloWorld { class Program { static void Main(string[] args) { Console.WriteLine("Hello World!"); } } }