首先創建一個從文件b.cs:
using System;
namespace superdont
{
class testprint
{
public void print()
{
Console.Write("lilizong");
}
}
}
其次創建一個主文件a.bs,引用從文件的命名空間中的類的方法。
using System;
using superdont;
namespace lilizong
{
class test
{
public static void Main()
{
testprint a = new testprint();
a.print();
}
}
}
此時如果直接編譯csc a.cs會導致錯誤,提示無法找到命名空間“superdont"。
正確的編譯方式為,將主文件和從文件放到一起進行編譯。
為:csc a.cs b.cs,然後運行a。