程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> .NET實例教程 >> c#中的引用問題2

c#中的引用問題2

編輯:.NET實例教程
此處介紹另外一種編譯的方式。

首先創建一個從文件d.cs
using System;
namespace superdont
{
    public class testprint
    //此處類為public
    {
        public void print()
        {
            Console.Write(" lilizong");
        }
    }
}
其次創建一個主文件c.bs,引用從文件的命名空間中的類的方法。

using System;
using superdont;
namespace lilizong
{
    class test
    {
        public static void Main()
        {
            testprint a = new testprint();
            a.print();
        }
    }

}

在編譯過程中,選擇將從文件編譯成dll文件格式。csc /target:library d.cs
此時再建立主文件和從文件的關聯:csc /reference:d.dll c.cs
最後運行從文件即可。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved