프로젝트

일반

사용자정보

통계
| 브랜치(Branch): | 개정판:

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
}
클립보드 이미지 추가 (최대 크기: 500 MB)