string2 Javascript C# String.Format 메서드와 동일한 기능 // C# String.Format 메서드와 동일하게 동작시키기 위한 함수 String.format = function () { // The string containing the format items (e.g. "{0}") // will and always has to be the first argument. var theString = arguments[0]; // start with the second argument (i = 1) for (var i = 1; i 2022. 1. 18. C# string to int 확장형 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; } } } 2022. 1. 11. 이전 1 다음 반응형