string a = "0";
int age;
bool canParse = int.TryParse(a, out age);
int? nullableAge = canParse ? age : (int?)null;
int age;
bool canParse = int.TryParse(a, out age);
int? nullableAge = canParse ? age : (int?)null;
'소프트웨어 > C# & ASP.NET' 카테고리의 다른 글
완전한 URL을 알아내는 방법 (0) | 2009.11.12 |
---|---|
/app_code 디렉토리에 있는 파일의 수는 최소화 하십시오. (0) | 2009.11.12 |
dotTrace - Performance profiling (0) | 2009.11.11 |
SlimTune (0) | 2009.11.11 |
Response.End, Response.Redirect 또는 Server.Transfer를 사용하면 ThreadAbortException이 발생한다 (0) | 2009.11.05 |