일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- mybatis
- Python
- hadoop
- table
- Eclipse
- mapreduce
- NPM
- SQL
- Kotlin
- R
- vaadin
- 공정능력
- JavaScript
- tomcat
- Java
- xPlatform
- plugin
- window
- Express
- MSSQL
- react
- IntelliJ
- Android
- GIT
- SSL
- Spring
- Sqoop
- es6
- SPC
- 보조정렬
- Today
- Total
목록C# (19)
DBILITY
https://dotnet.microsoft.com/download/visual-studio-sdks
대리자라고들 하고 번역대로라면 위임하다정도 되겠다. 뭘 위임한다는 것일까..결국 Method에 대한 참조다. callback method를 생각해 보자. 피호출자에게 호출자의 메서드를 넘겨주고 피호출자가 그 메서드를 실행한다. 결국 메모리상의 메서드(함수)의 위치값을 넘기는게 되는거지..뭐라는건지ㅎㅎ C# 전문가가 아니다보니 그동안 전통적 방식의 델리게이트만 썼는데, 2.0부터 간소화되었군.. using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication1 { class Program { static void ..
클래스명, 메서드명, 속성명, 이벤트명은 Pascal Case public void Order //클래스명. Pascal Case { public int OrderId { get; set; } //속성명. Pascal Case public void PlaceOrder(int id) //메서드명. Pascal Case { .... } public event EventHandler Completed; //이벤트명. Pascal Case } 상수가 아닌 필드명은 Camel Case class TestClass { int startIndex; //Camel Case string lastName; } 메서드 파라미터는 Camel Case CallMethod(startIndex, endIndex); 로컬 변수명은 ..
http://pinvoke.net/ pinvoke.net: the interop wiki! Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't. To create a page in a module other than misc, prefix the name with the module name and a period. What is PInvoke.net? A wiki for .NET developers PIn pinvoke.net http://www.csharpstudy.com/Practical/Prac-pinvoke.aspx C# P/Invoke 사용 - C# 프로그..