-
대리자C#[delegates]코딩Coding/C#_용어 2020. 5. 14. 17:05728x90
대리자(C# 프로그래밍 가이드)
https://docs.microsoft.com/ko-kr/dotnet/csharp/programming-guide/delegates/A delegate in C# is similar to a function pointer in C or C++. Using a delegate allows the programmer to encapsulate a reference to a method inside a delegate object. The delegate object can then be passed to code which can call the referenced method, without having to know at compile time which method will be invoked.
https://www.google.com/search?q=delegates%20code
반응형'코딩Coding > C#_용어' 카테고리의 다른 글
[C#] 왜 partial class를 사용하는걸까요? (0) 2020.05.28 (C#)using System.Threading; (0) 2020.05.28 부울린연산자Boolean Operator, 비교연산자 (2) 2020.05.23 관리코드(Managed code)&비관리코드(Unmanaged code)& 중간언어(Intermediate Language, IL) (0) 2020.05.15 Method메소드 (0) 2020.05.14 인터페이스Interface(c#) (0) 2020.05.14 Pointer포인터형식 (0) 2020.05.14 Array Class (0) 2020.05.14