| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- SSL
- react
- xPlatform
- Android
- SPC
- Spring
- Sqoop
- 보조정렬
- es6
- Express
- JavaScript
- SQL
- mapreduce
- IntelliJ
- plugin
- MSSQL
- Python
- 공정능력
- Eclipse
- NPM
- mybatis
- hadoop
- R
- Java
- vaadin
- tomcat
- table
- GIT
- window
- Kotlin
- Today
- Total
목록C# (21)
DBILITY
https://docs.zebra.com/us/en/printers/software/zpl-pg/c-sgd-introduction.html IntroductionWho Should Use This Documentdocs.zebra.com 라벨 형식 및 제어 명령어명령어형식설명예시^XA^XAStart Format (라벨 형식 시작). 모든 ZPL 코드는 이 명령어로 시작해야 합니다.^XA^XZ^XZEnd Format (라벨 형식 끝). 모든 ZPL 코드는 이 명령어로 끝나야 합니다.^XZ^MM^MMaPrint Mode (인쇄 모드 설정).^MMT (Tear Off 모드)^PW^PWwPrint Width (인쇄 폭 설정). 인쇄 영역의 최대 폭을 도트(Dot) 단위로 지정합니다.^PW826 (826 도트 폭..
VS2017에서 Nuget Manager에서 Fody 4.2.1, Costura.Fody 3.3.3를 설치하고 재시작,Build를 해보면 exe의 용량이 늘어나 있음
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); 로컬 변수명은 ..