visual Basic에서 작성한 dll 화일을 c#에서 적용 본문

[PL]/C# & WPF

visual Basic에서 작성한 dll 화일을 c#에서 적용

객과 함께. 2010. 8. 16. 16:00

인터넷 검색을 하시면 많은 자료가 있습니다.  c++ , 델파이 , c  등등의 언어로 작성한 dll파일을 c#에서 쓰기 위해서는 코드에서 직접 사용한다고 선언 해주고 사용 한다.( http://perfectcrimelab.com/136에서 참고 )

 

c# 툴 왼족에 "솔루션 탐색기" 에서 "참조 " 부분에서 해당 dll파일을  참조추가 해주셔야 합니다.

 

using clsTest;

 

 namespace WinDllApp
{
    public partial class Form1 : Form
    {

        private clsTest.clsListTest clsDll = new clsTest.clsListTest();

        public Form1()
        {
            InitializeComponent();
        }

        private void button3_Click(object sender, EventArgs e)
        {
            Application.Exit();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            int noVal = Convert.ToInt32(textBox1.Text);

            if (textBox1.Text != "")
            {
                clsDll.Add(noVal);
                textBox1.Focus();
                textBox1.Text = "";
            }  
        }

        private void button2_Click(object sender, EventArgs e)
        {
            decimal Total = clsDll.Total;
            decimal Aver = clsDll.Average;

            textBox2.Text = "합계 : " + Total + "  , " + "평균 : " + Aver;
            textBoxClear(sender, e);
        }

        private void textBoxClear(object sender, EventArgs e)
        {
            clsDll.Clear();
        }
    }
}

 

'[PL] > C# & WPF' 카테고리의 다른 글

오류 코드   (0) 2011.04.21
배열에 저장된 예제  (0) 2010.09.18
Thread   (0) 2010.08.03
루트 값  (0) 2010.07.31
Math 예제   (0) 2010.07.15