/*
* Console에서 DLL생성과 DLL을 이용해서 실행파일 만들기
*/
/*
#DLL Creation
prompt>csc.exe /target:library TrisPackage.cs
prompt>csc.exe /target:library TrisPackage.cs
prompt>csc.exe /target:library TrisPackage.cs
prompt>csc.exe /target:library TrisPackage.cs
prompt>csc.exe /target:library TrisPackage.cs
prompt>dir
TrisPackage.cs
TrisPackage.dll
#EXE Creation reference by DLL File
prompt>csc.exe /out:example.exe /referece:TrisPackage.dll example.cs
prompt>csc.exe /out:example.exe /referece:TrisPackage.dll example.cs
prompt>csc.exe /out:example.exe /referece:TrisPackage.dll example.cs
prompt>csc.exe /out:example.exe /referece:TrisPackage.dll example.cs
prompt>csc.exe /out:example.exe /referece:TrisPackage.dll example.cs
*/
/*FILENAME:example.cs*/
using TrisPackage.Tris;
class Program
{
public static void Main(string[] args)
{
TrisCls nm = new TrisCls();
nm.running();
}
}
'c# 언어' 카테고리의 다른 글
TimeSpan structure(구조체) (0) | 2021.10.29 |
---|---|
Java와 .NET의 차이점 (0) | 2021.10.26 |
정적 클래스 및 정적 클래스 멤버 (0) | 2021.10.22 |
this 키워드 (0) | 2021.10.21 |
객체의 이해와 객체의 생성필요와 생성이 필요없는경우 (0) | 2021.10.21 |