일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 크롤링
- Python
- MX Component
- 장고
- Serial
- scrapy
- M2M
- 윈도우10
- tensorflow
- rs485
- 티스토리 초대장
- c#
- 텐서플로우
- MEAN Stack
- Visual Studio Code
- rs422
- 오라클
- django
- sql developer
- pymssql
- 자본주의
- MSSQL
- 파이썬
- windows10
- matplot
- 딥러닝
- PYTHON MSSQL
- MSSQL PYTHON
- oracle
- vscode
Archives
- Today
- Total
안까먹을라고 쓰는 블로그
[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.IsNullOrEmpty(sTemp2); // true
Boolean B3 = string.IsNullOrEmpty(sTemp3); // false
B1 = string.IsNullOrWhiteSpace(sTemp1); // true
B2 = string.IsNullOrWhiteSpace(sTemp2); // true
B3 = string.IsNullOrWhiteSpace(sTemp3); // true
|
cs |
끝
반응형
'Language > C#' 카테고리의 다른 글
VISUALL STUDIO CODE (비주얼 스튜디오 코드) 설치 (0) | 2018.06.12 |
---|---|
[C#] Winfrom 사이즈 고정 (0) | 2018.05.29 |
C# WCF (0) | 2017.04.11 |
[ C# ] FTP 사용하기 (0) | 2017.03.31 |
[ C# ] 네트워크 상태 확인 (0) | 2017.03.31 |
Comments