Csharp

De Wiki Educalibre

Hola mundo en C#:

<csharp> /*

* FileName: HolaMundo.cs
*
*/

using System;

class HolaMundo {

   static void Main (String[] args)
   {
       System.Console.WriteLine("Hola Mundo \n");
   }

}

</csharp>