C# *.dll은 어떤 파일입니까? 어떻게 생성합니까?

830 단어 C#dll
C# ,dll       

      .cs  ,    :
namespace.cs

using System;
namespace BaiDu
{
    class Test
    {
        static void Main()
        {
            PrintName a = new PrintName();
            a.intro();
        }
    }
}

PrintName.cs

using System;
namespace BaiDu
{
    public class PrintName
    {
        public void intro()
        {
            Console.WriteLine("My name is lhking");
        }
    }
}

 VS        csc /target:library PrintName.cs   ,        dll  ,csc /reference:PrintName.dll namespace.cs   ,        dll   namespace.cs     。
namespace.exe   ,       "My name is lhking"。

 PrintName.cs , lhking  Tom,  csc /target:library PrintName.cs    ,namespace.exe   ,       "My name is Tom"。

  dll       ,       。

좋은 웹페이지 즐겨찾기