전체 글(271)
-
Windows에서 ASP.NET 임시 파일을 지우는 방법
https://tecadmin.net/how-to-clear-the-asp-net-temporary-files-in-windows/ How to Clear the ASP.NET Temporary files in Windows – TecAdmin Sometimes you may notice a strange caching behavior by the applications running in IIS. Today I found that my ASP.NET application showed a blank page. It is hosted on Windows Server 2019 in Azure Platform. I tried multiple times to resolve the issue but di teca..
2022.12.23 -
[C#] PublicKeyToken=null - DLL 서명하기
이 작업을 하게 된 이유를 먼저 소개 하자면, spring.net 1.3.2 버전이 필요해서 찾고 있다가 spring.net 의 github 위치를 알게 되었고, 해당 버전을 다운로드 한 이후에 빌드를 해 놓고 보니, 나의 프로젝트에서 사용하던 기존 버전의 spring dll 을 먼저 찾고 있는 상황이 발생 했습니다. 어차피 같은 dll 이니 버전만 맞추면 되겠거니 하고 생각해서 맞추려고 보니 우선, PublicKeyToken 값이 없고, 이 문제를 해결하려다 보니 dll 을 서명 해야 한다는 것을 알아 냈습니다. 그리고, 한 가지를 더 알았죠... 인생을 X삽질의 연속이라는 것을... 1. PublicKeyToken=null ? web.config 파일 등에서 다음과 같이 PublicKeyToken를 ..
2022.12.22 -
[Java]문자 반복 찾기 없이 가장 긴 하위 문자열 찾기
https://examples.javacodegeeks.com/longest-substring-without-repeating-characters/ Longest Substring Without Repeating Characters In this tutorial, we will implement an important data structure question known as finding the longest substring without repeating characters. examples.javacodegeeks.com 안녕하세요. 이번 자습서에서는 데이터 구조에 대한 주요 질문 중 하나인 문자 반복 찾기 없이 가장 긴 하위 문자열 찾기에 대한 구현 해보려고 합니다. 1. 소개 구현은 다음과 같..
2022.12.21 -
[C#] System.NullReferenceException
C#을 접해 보니 거의 dll 의 덩어리라고 해도 과언이 아닌 것 같습니다. 내가 프로그램을 만들었다고 하면, 적어도 50개 이상의 dll 을 사용하고 있다라는 생각도 들구요 비주얼스튜디오도 잘 안써보다 쓰니까...모르는 기능도 많고 말입니다. 뭔가를 만들때 당황스러운 경우가 생기기 시작하더군요 예를들면, 내가 만들지도 않은 dll 의 어떤 메서드에서 System.NullReferenceException 이 발생 하는 데, 그냥 지나가 버려 어느 부분에서 오류가 나는 지 알 수 없어서 헤메이고 있었던 때가 생각이 납니다. 스택오버플로우에서 찾았습니다. 뭐, 원래는 마이크로소프트 홈페이지에서 찾아야 하지만 어디면 어떨까요 ^^ https://stackoverflow.com/questions/32751435..
2022.12.20 -
[C#] Dll의 PublicKeyToken 찾기
https://stackoverflow.com/questions/1710935/how-do-i-find-the-publickeytoken-for-a-particular-dll How do I find the PublicKeyToken for a particular dll? I need to recreate a provider in my web.config file that looks something like this: 0) { foreach (var assembly in assemblies) { Console.WriteLine(" - " + assembly.FullName + ", ProcessorArchitecture=" + assembly.ProcessorArchitecture); } return ..
2022.12.19 -
[C] 포인터와 구조체
https://www.javatpoint.com/data-structure-pointer DS Pointer - javatpoint DS Pointer with Introduction, Asymptotic Analysis, Array, Pointer, Structure, Singly Linked List, Doubly Linked List, Circular Linked List, Binary Search, Linear Search, Sorting, Bucket Sort, Comb Sort, Shell Sort, Heap Sort, Merge Sort, Selection Sort, Co www.javatpoint.com 포인터는 컴퓨터 메모리에 저장된 값의 주소를 가리키는 데 사용됩니다. 위치에 저장된 값..
2022.12.18