Compile Errors
Chapter 2: C# Basics, Page 58
I am using the code downloaded from this site. When I type the following command,
csc /t:library MathLibrary.cs
the dll gets created in the directory. But when I type,
csc MathClient.cs /r:MathLibrary.dll
I get the following errors.
MathClient.cs(10,10): error CS0246: The type or namespace name 'MathLib' could not be found (are you missing a using directive or an assembly reference?)
MathClient.cs(10,32): error CS0246: The type or namespace name 'MathLib' could not be found (are you missing a using directive or an assembly reference?)
Any idea what might be wrong?
TP
Newbie!!
|