일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- sql developer
- matplot
- 텐서플로우
- c#
- 윈도우10
- Python
- django
- 크롤링
- MX Component
- M2M
- 오라클
- MSSQL PYTHON
- MSSQL
- 자본주의
- tensorflow
- Serial
- Visual Studio Code
- MEAN Stack
- oracle
- vscode
- pymssql
- rs485
- 장고
- 티스토리 초대장
- windows10
- rs422
- 파이썬
- 딥러닝
- scrapy
- PYTHON MSSQL
Archives
- Today
- Total
목록NULL 체크 (1)
안까먹을라고 쓰는 블로그
[C#] Null 체크 방법
NULL인 경우, 다른 값 대체 체크하는 값이 null인 경우 1 2 string sTemp = null; string sTemp2 = sTemp ?? "Null 이다"; cs 결과값 : "Null 이다" 체크하는 값이 null인 경우. 1 2 string sTemp = "1234"; string sTemp2 = sTemp ?? "Null 이다"; cs 결과값 : "1234" NULL / string.empty / 공백 체크 1 2 3 4 5 6 7 8 9 10 11 string sTemp1 = null; string sTemp2 = ""; string sTemp3 = " "; Boolean B1 = string.IsNullOrEmpty(sTemp1); // true Boolean B2 = string...
Language/C#
2017. 9. 6. 14:23