개발/C#
C# string to int 확장형
혈중마라농도
2022. 1. 11. 11:40
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;
}
}
}
반응형