Hey;
I'm a C# newbie, and have constructed my first program that uses a seperate runtime and library. It works all fine and dandy in Mono. However, when I try to run it on .net it complains :-\. I don't have a Windows PC handy at the moment to post the exception, but here's how the code is setup (Yes, CDurry is set up as a reference):

File for the .exe project:

   using CDurry;

   public class consdurry
   {

       public static void Main()
{ //Load classes from CDurry library
           CDurry.coredurry coredurry = new  CDurry.coredurry();
           CDurry.conecdurry conecdurry = new  CDurry.conecdurry();

<snip>

File for the .dll project:

   namespace CDurry
   {

       public class coredurry
       {
           <snip>
       }

       public class conecdurry
       {
           <snip>
       }

<snip>

On running the program on .net it complains about not beind able to find the "cdurry" namespace.

      I'm grateful for any tips as to any errors in the code.
              SigmaX





--
My home page: www.sigmax.cjb.net

"Education is what remains after one has forgotten everything he learned in 
school"
        -Albert Einstein


_______________________________________________
Mono-devel-list mailing list
[email protected]
http://lists.ximian.com/mailman/listinfo/mono-devel-list

Reply via email to