Back to notes -- Keyboard shortcut: 'u'  previous -- Keyboard shortcut: 'p'        Slide program -- Keyboard shortcut: 't'    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