markus / ConvertService / ServiceController / Markus.Service.Extensions / Exntensions / string.cs @ 5c387707
이력 | 보기 | 이력해설 | 다운로드 (634 Bytes)
1 |
using System; |
---|---|
2 |
using System.Collections.Generic; |
3 |
using System.Linq; |
4 |
using System.Text; |
5 |
using System.Threading.Tasks; |
6 |
|
7 |
namespace Markus.Service.Extensions |
8 |
{ |
9 |
public static class StringExtension |
10 |
{ |
11 |
public static bool IsNullOrEmpty(this string value) |
12 |
{ |
13 |
if(!string.IsNullOrWhiteSpace(value)) |
14 |
{ |
15 |
return false; |
16 |
} |
17 |
else |
18 |
{ |
19 |
return true; |
20 |
} |
21 |
} |
22 |
|
23 |
public static bool IsNumber(this string value) |
24 |
{ |
25 |
int outValue = 0; |
26 |
return int.TryParse(value, out outValue); |
27 |
} |
28 |
} |
29 |
} |