Back to slide -- Keyboard shortcut: 'u'  previous -- Keyboard shortcut: 'p'                introductory-examples/program-organization/3/compilation - Possible compilation of namespace Intro and class Client.Lecture 4 - slide 19 : 29
Program 14

In Windows SDK
csc /target:library /out:assembly.dll f1.cs f2.cs
csc /reference:assembly.dll client.cs

client.exe


In MONO:
gmcs /target:library /out:assembly.dll f1.cs f2.cs
gmcs /reference:assembly.dll client.cs

mono client.exe