2018/06/20

How to initialize all the settings in 'Visual Studio'. - Solve the problem that debugging does not work.


Run: Start->Visual Studio->Developer Command Prompt.

Inputs the initialization command:
devenv /resetuserdata

In this way, I solved a problem 'Debugging not working'.

댓글 없음:

댓글 쓰기

C# 문자열 포함 여부 확인하기.

ToUpper() 를 사용하면 불필요한 문자열을 생성하므로 좋은 방법은 아니다. string text = "This is an apple." ; string apple = "Apple." ; bool ...