코딩Coding/C#
-
[C#]Garbage Collector-메모리 누수를 관리해줌(메모리 관리자?코딩Coding/C# 2020. 11. 1. 23:13
https://dhshin94.tistory.com/m/136[C#] 쓰레기 수집기 (Garbage Collector)1. 사전 학습 using System; class Program { public static void Foo() { int n2 = 0; // 1초 후 } static void Main() { int n1 = 0; // 1시간 경과 Foo(); } } Q. 누가 더 오래 살 수 있을까? 코드를 보기 전..dhshin94.tistory.com
-
C#_디버깅 시작과 디버그하지 않고 시작의 차이/(F5) vs (Ctrl+F5)코딩Coding/C# 2020. 9. 5. 13:22
storycompiler.tistory.com/208?category=129476 [Visual Studio] Start debugging vs Start without debugging 안녕하세요, 리눅스 개발환경에만 익숙하여, Visual Studio 환경이 그저 낯설기만한 개발자 윤진입니다. 간헐적으로 Visual Studio를 사용할 때마다 궁금했던 것이 있었습니다. 수시로 코드상태를 체크 storycompiler.tistory.com