검색결과 리스트
dll에 해당되는 글 3건
- 2010.01.05 Assembly 등록~
- 2009.04.29 DLL 만들기 -2 1
- 2009.04.29 DLL 만들기 1
namespace Client { class IntCalculator2 : IntCalculator { public static void PrintMessage() { Console.WriteLine("요게 되는군요~ :)"); } } class Program { static void Main(string[] args) { Console.WriteLine("5+5 = {0}", IntCalculator2.Add(5, 5)); Console.WriteLine("5-5 = {0}", IntCalculator2.Sub(5, 5)); IntCalculator2.PrintMessage(); } } }
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace testDLL { public class IntCalulator { public static int Add(int a, int b) { return a + b; } public static int Sub(int a, int b) { return a - b; } } }
using System; using System.Collections.Generic; using System.Linq; using System.Text; using testDLL; namespace Client { class Program { static void Main(string[] args) { Console.WriteLine("5+5 = {0}", IntCalculator.Add(5, 5)); Console.WriteLine("5-5 = {0}", IntCalculator.Sub(5,5)); } } }
이런 코드를 작성하고 나면
컴파일을 하고 자시고 할것도 없이
빨간줄이 쭉쭉 그어집니다.
testDLL을 using하긴 했지만.
이게 어디있는 놈인지. 진짜 있긴 한건지.
알수가 없으니 안되겠죠.
멍청한(--;;) 컴파일러에게 친절하게
testDLL이 어디 있는지를 가르쳐 줘야 합니다.
솔루션탐색기에서 참조란을 우클릭하고 참조추가를 한후
아까 만들어진 testDLL이 있는 위치를 찾아 추가를 해주면 되요.
RECENT COMMENT