본문 바로가기

delegate4

5. delegate I 5. delegate I Have a good coding! my talabalar^^ 2017. 2. 15.
입력 파라미터로 클래스를 받은 대리자와 dll 사용하기 서울 성공회대학교 소프트웨어공학과 학생들을 가르치면서 과제로 내 준 내용을 정리해 보았으며 세부내용은 다음과 같습니다. - myInformation.dll 파일 namespace myInformation { public class Book { public string title; //도서명 public string author; // 저자 public string publisher; // 출판사 public Book(string intitle, string inauthor, string inpublisher) { title = intitle; author = inauthor; publisher = inpublisher; } } public class Music { public string title; /.. 2011. 11. 2.
delegate 알아보기 Delegate는 대리자라고 해석할 수 있는데 C언어를 공부해 본 적이 있는 사람은 함수포인터(Function Pointer)라는 것에 대해서 들어보았을 텐데요. 이 함수포인터와 비슷하다고 보면 됩니다. 제가 VB.NET 2008로 올린 글 http://fromyou.tistory.com/15 을 보시면 VB.NET에서 이용하는 delegate에 대해서 설명을 해 놓았습니다. C#이나 VB.NET은 형식의 조그마한 차이가 있을 뿐 사용은 거의 비슷한 것 같습니다. 제가 VB.NET2008로 멀티채팅프로그램(http://fromyou.tistory.com/16) 만들 때 서버나 클라이언트에서 이벤트가 발생하면 그것을 비동기 전송하기 위해서 콜백함수를 이 delegate로 만들었는데요. 참 편리하더군요. 시.. 2008. 9. 19.
What is the delegate in VB.NET I'm learning VB.NET at KH Education Institute at Seoul, Korea. Now, our teacher is teaching Form Controls but I already knew how to use those. So I made a program like TCP/IP networking, Windows Services in our class. I hope I'd like to teach student, and they will be a good programmer individually, if they want to be. Well, I remember when I learned how to use pointer In C, C++. Definition of p.. 2008. 7. 2.