분류 전체보기60 Javascript SetCookie GetCookie function GetCookie(key) { var arg = key + "="; var argLength = arg.length; var cookieLength = document.cookie.length; var i = 0; var j = 0; while (i 2) ? argv[2] : null; var domain = (argc > 3) ? argv[3] : null; var path = (argc > 4) ? argv[4] : '/'; var secure = (argc > 5) ? argv[5] : false; if (expires != null) { var date = new Date(); date.setTime(date.getTime() + (expires * 24 * 60 * 60 * 10.. 2022. 1. 12. 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. C# byte to int static void Main(string[] args){ { // Bytes to int byte[] bytes = { 0, 0, 25, 25 }; // 이 컴퓨터 아키텍처에서 데이터가 저장되는 바이트 순서("endian")를 나타냅니다. // 이 아키텍처가 little-endian이면 true이고, big endian이면 false입니다. if (BitConverter.IsLittleEndian) Array.Reverse(bytes); int i = BitConverter.ToInt32(bytes, 0); Console.WriteLine("int: {0}", i); // Out.. 2022. 1. 11. Javascript Html 인코딩, 디코딩 function htmlEncode(value){ return $('').text(value).html(); } function htmlDecode(value){ return $('').html(value).text(); } 2022. 1. 7. 이전 1 ··· 8 9 10 11 12 13 14 15 다음 반응형