error
-
Visual Studio: Warning IDE0006 Error encountered while loading the project 경고 해결C# 2022. 2. 11. 09:55
[c# - 경고 IDE0006 프로젝트를로드하는 동안 오류가 발생했습니다.] Close Visual Studio Open a Visual Studio Developer Command Prompt Set environment variable “TraceDesignTime” to true (set TraceDesignTime=true) Delete .vs directory/.suo file Restart VS from the command prompt you set the environment varaible (devenv) Open the solution Check 'C:\Users\nitesh dandekar\AppData\Local\Temp\HelloWorld_*.designtime.log' and l..
-
c# Error - NullReferenceExceptionC# 2022. 1. 24. 15:04
NullReferenceException was unhandled by user code An exception of type 'System.NullReferenceException' occurred in FleckWebsocketServer.exe but was not handled in user code Additional information: 개체 참조가 개체의 인스턴스로 설정되지 않았습니다. 디버깅 도중 이런 오류가 떴다. 이유는 간단했다. if문에서 저 runLoop 변수를 초기화 해주지 않은 상태에서 값을 비교했었다. if(runLoop == null || runLoop.Status == TaskStatus.RanToCompletion) { MessageBox.Show("loop 실행"); ..
-
flutter 에러 - Missing type arguments for generic method 'push<T extends Object?>'. Try adding an explicit type, or remove implicit-dynamic from your analysis options file.Flutter 2021. 7. 28. 03:32
->페이지를 이동하는 시키기 위해 버튼을 만들고 navigator를 사용하였는데 이러한 오류가 떴다. -> 읽어봐도 어떻게 해결해야하는지 감이 오지 않아 구글에 찾아보았다. ->아직 이유는 모르겠지만 제네릭 자료형이 맞지 않아서 오류가 난 것일까 -> stateful widget 문제인가 싶어서 간단한 예제를 만들어 적용해보았는데 그것도 아니였다. ->MaterialPageRoute 맞춰줘야 하는 것이 아직 무슨 의미인지 잘 모르겠어서 좀 더 공부해봐야 할 것 같다. -> push 옆에 를 붙여주었더니 정상적으로 페이지가 이동되었다. [참고한 페이지] https://stackoverflow.com/questions/60798549/try-adding-an-explicit-type-like-dynamic-..
-
flutter - Error: ADB exited with exit code 1Flutter 2021. 7. 19. 18:09
Error: ADB exited with exit code 1 Performing Streamed Install adb: failed to install C:\Users\----\----\vscode\flutter_project\flutter_ch15_drawer_menu: Exception occurred while executing: android.os.ParcelableException: java.io.IOException: Requested internal only, but not enough space at android.util.ExceptionUtils.wrap(ExceptionUtils.java:34) at com.android.server.pm.PackageInstallerService...