Dll Reference

-- C# 2009. 7. 23. 19:41
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
[TestDll.cs]

public class TestDll
{
    public static void Func1()
    {
        System.Console.WriteLine("print from dll");
    }
}

csc /t:library TestDll.cs

[UseDll.cs]

using System;
using System.Diagnostics;
using System.Reflection;

class UseDll
{
    static void Main(string[] args)
    {
        TestDll.Func1();
    }
}

csc UseDll.cs /r:TestDll.dll

'-- C#' 카테고리의 다른 글

C# DLL을 C, C++, MFC에서 쓰는 방법  (0) 2011.06.29
const vs readonly  (0) 2011.05.13
C# Switch Fall-through  (0) 2011.05.13
Alias 기능  (0) 2009.07.23
helloworld  (0) 2009.07.22
posted by 어린왕자악꿍