코딩Coding/C#_용어
-
Method메소드코딩Coding/C#_용어 2020. 5. 14. 17:48
A method is a set of code which is referred to by name and can be called (invoked) at any point in a program simply by utilizing the method's name. Think of a method as a subprogram that acts on data and often returns a value. Each method has its own name.
-
Pointer포인터형식코딩Coding/C#_용어 2020. 5. 14. 17:18
In computer science, a pointer is a programming language object that stores a memory address. ... A pointer references a location in memory, and obtaining the value stored at that location is known as dereferencing the pointer. https://www.google.com/search?q=pointer%20codepointer code - Google 검색Some C programming tasks are performed more easily with pointers, and ... When the above code is com..
-
대리자C#[delegates]코딩Coding/C#_용어 2020. 5. 14. 17:05
대리자(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 ..