hytos / ID2.Manager / ID2.Manager.Common / Helpers / StringHelper.cs @ dfb9a03c
이력 | 보기 | 이력해설 | 다운로드 (476 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 ID2.Manager.Common.Helpers |
8 |
{ |
9 |
public static class StringHelper |
10 |
{ |
11 |
public static string DefalutValue(this string value) |
12 |
{ |
13 |
if(string.IsNullOrEmpty(value)) |
14 |
{ |
15 |
return string.Empty; |
16 |
} |
17 |
else |
18 |
{ |
19 |
return value; |
20 |
} |
21 |
} |
22 |
} |
23 |
} |