You've already forked linux-packaging-mono
25 lines
203 B
C#
25 lines
203 B
C#
![]() |
namespace A
|
||
|
{
|
||
|
public class T
|
||
|
{
|
||
|
public class N
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
namespace B
|
||
|
{
|
||
|
using static A.T;
|
||
|
|
||
|
static class Program
|
||
|
{
|
||
|
static void Main ()
|
||
|
{
|
||
|
var t = typeof (N);
|
||
|
var u = new N ();
|
||
|
}
|
||
|
}
|
||
|
}
|