|
Listing 2-8 extracted from chapter
Assembly, module, IL language
Listing 2-7< > Listing 2-9
This listing can be compiled with the command line: csc.exe /out:Program.exe /target:exe Example_2_8_to_rename_Program.cs /r:System.dll Errors: 2 Warnings: 0
Example_2_8_to_rename_Program.cs
class Program {
static void Main() {
MyRes.Culture = new System.Globalization.CultureInfo("es-ES");
System.Console.WriteLine( MyRes.Bonjour );
}
}
Copyright Patrick Smacchia 2006 2007
|