본문 바로가기
개발/C#

C# string to int 확장형

by 혈중마라농도 2022. 1. 11.
namespace System
{
    public static class StringConvert
    {
        public static int ToConvertInt(this string self, int defalut = 0)
        {
            int value = defalut;
            int.TryParse(self, out value);
            return value;
        }
    }
}

intelligence 된 모습

 

반응형

'개발 > C#' 카테고리의 다른 글

IIS ASP.net 폼인증 컴퓨터 키(machineKey) 생성  (0) 2022.02.16
C# parse xml pretty string  (0) 2022.01.20
C# byte to int  (0) 2022.01.11
C# 클라이언트 Browser 정보얻기  (0) 2022.01.07
C# 로컬IP(서버IP)정보 조회  (0) 2022.01.06

댓글