|
Listing 3-16 extracted from chapter Build, deploy and configure your .NET applications
Listing 3-15< > Listing 3-17
This listing can be compiled with the command line: csc.exe /out:MyLib.dll /target:library Example_3_16_to_rename_MyLib.cs Errors: 0 Warnings: 0
Example_3_16_to_rename_MyLib.cs
public class MyClass {
public override string ToString() {
return "Hello from MyLib.";
}
}
Copyright Patrick Smacchia 2006 2007
|