dotgnu-general
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[DotGNU]a bug report


From: Kamen Yotov
Subject: [DotGNU]a bug report
Date: Thu, 18 Dec 2003 15:29:08 -0500

hi there,
 
we were trying to port a big C# application that we wrote to pnet and faced a problem.
after some trial and error, i managed to isolate the problem to the following toy case:
 
using System;
 
//using A.B;
 
namespace A
{
 using B;
 
 class CA
 {
  static void Main ()
  {
   Console.WriteLine(CB.S);
  }
 }
}
 
namespace A.B
{
 class CB
 {
  public static string S = "Hello World!";
 }
}
 
note that this compiles under microsoft .net and does not under pnet (unless you uncomment the second line).
 
greetings,
kamen

reply via email to

[Prev in Thread] Current Thread [Next in Thread]