Matt Gerrans
Posts: 1153
Nickname: matt
Registered: Feb, 2002
|
|
Re: Namespace
|
Posted: Jan 6, 2004 9:09 AM
|
|
First you need to compile First into an assembly. For the following, let's assume you did that and called it "Cardinal.dll"
Next:
In the IDE, in the "Solution Explorer" tool window, you right-click the project and choose "Add Reference..." and from there you can browse to the assembly that contains First, "Cardinal.dll" and add it.
Alternatively, on the command line, you might do something like this:
csc /reference:d:\path\Cardinal.dll Second.cs
(you might also use /standalone if you want to make it an exe, as well as other options you can find with "csc /?")
|
|