일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- pymssql
- 자본주의
- 티스토리 초대장
- 텐서플로우
- matplot
- rs422
- django
- tensorflow
- 크롤링
- Python
- 파이썬
- rs485
- vscode
- scrapy
- Serial
- 오라클
- sql developer
- oracle
- windows10
- M2M
- MSSQL PYTHON
- PYTHON MSSQL
- 윈도우10
- MX Component
- c#
- Visual Studio Code
- MSSQL
- 장고
- 딥러닝
- MEAN Stack
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