The following lines were added (+) and removed (-):
Unlike C++, C# does not support multiple inheritance, although a class can implement any number of "interfaces" (fully abstract classes). This was a design decision by the language's lead architect to avoid complications and to simplify architectural requirements throughout CLI. Mono compiler: Hello World vi helloworld.csCode using System; class HelloWorld { static void Main() { Console.WriteLine("Hello world"); } }