Accueil : Différence entre versions
| Ligne 10 : | Ligne 10 : | ||
# ''[[ProDoc/en|Help documentation on ProDoc]]'' | # ''[[ProDoc/en|Help documentation on ProDoc]]'' | ||
| + | <source lang="csharp"> | ||
| + | // Hello World in Microsoft C# ("C-Sharp"). | ||
| + | |||
| + | using System; | ||
| + | |||
| + | class HelloWorld | ||
| + | { | ||
| + | public static int Main(String[] args) | ||
| + | { | ||
| + | Console.WriteLine("Hello, World!"); | ||
| + | return 0; | ||
| + | } | ||
| + | } | ||
| + | </source> | ||
{{Logilys_BasPage}} | {{Logilys_BasPage}} | ||
Version du 5 novembre 2009 à 17:59
Logilys Wiki
Welcome to Logilys Wiki.
This Wiki is split into 4 big section :
- Help documentation on ProDon
- Help documentation on ProLoc
- Help documentation on ProLys
- Help documentation on ProDoc
<source lang="csharp"> // Hello World in Microsoft C# ("C-Sharp").
using System;
class HelloWorld {
public static int Main(String[] args)
{
Console.WriteLine("Hello, World!");
return 0;
}
} </source>