I create 2 projects (P1, P2) and the 2 projects have 2 namespace (N1, N2; N1 belongs to P1, N2 belongs to P2). I could use "using X=N1", but i can not use "using X=N2" at project P1, P1 can not find the namespace N2. I know it can, but if I should change some settings thanks!
BTW, if i put both of the 2 namespace (N1, N2) at P1, then whatever i could use "using X=N1" and "using X=N2".
Visual C#12
|