C#
-
[WPF] AnimationC#/WPF 2025. 4. 30. 17:08
https://learn.microsoft.com/ko-kr/dotnet/desktop/wpf/graphics-multimedia/animation-overview?view=netframeworkdesktop-4.8&viewFallbackFrom=netdesktop-9.0 애니메이션 개요 - WPF .NET FrameworkWindows Presentation Foundation(WPF)에서 극적인 화면 전환 또는 생생한 시각적 효과를 사용하여 매력적인 사용자 인터페이스를 더욱 멋지게 만듭니다.learn.microsoft.com https://www.youtube.com/watch?v=6E7DAH8VYHU&list=PLvA3V2O0S6Rhyt6KY1pZOl1mS0bdE3sFI&index=3
-
[WPF][Blazor] WPF Blazor 앱 빌드C#/WPF 2025. 4. 30. 15:53
https://learn.microsoft.com/ko-kr/aspnet/core/blazor/hybrid/tutorials/wpf?view=aspnetcore-9.0 WPF(Windows Presentation Foundation) Blazor 앱 빌드WPF(Windows Presentation Foundation) 앱을 단계별로 빌드합니다.learn.microsoft.com https://learn.microsoft.com/ko-kr/training/modules/build-blazor-hybrid/ Blazor 하이브리드 및 .NET MAUI를 사용하여 모바일 및 데스크톱 앱 빌드 - TrainingBlazor, .NET MAUI 및 C#을 사용하여 개발 환경을 설정하고 첫 번째 플랫폼 간 하이브..
-
[C#] PortC#/기초 2025. 4. 23. 15:27
https://www.techtarget.com/searchnetworking/definition/dynamic-port-numbers What are dynamic port numbers and how do they work?Dynamic port numbers enable applications to communicate with each other using TCP or UDP. Learn how dynamic ports work and are standardized.www.techtarget.com
-
-
[C#] Summary 외부 dll , Nuget 추가 시C#/기초 2025. 4. 9. 11:43
체크 Gernerate a file containing API documentation. nupkg에 .xml 파일 포함 됨. https://skfkdkdlaos.tistory.com/58 C# dll 파일을 외부에서 참조 추가 시 설명 보이게 하는 방법이번에는 dll 파일을 만들어놓고 다른 프로젝트에서 참조시킬 때 기존에 추가했던 설명을 보이게 하는 방법에 대하여 알아보겠습니다. MS에서는 해당 설명을 '문서 주석' 이라는 명칭으로 사용합skfkdkdlaos.tistory.com
-
[WPF] Plug-InC#/WPF 2025. 4. 1. 17:19
#DynamicModule#Modular 공통 모듈, 모듈 인터페이스 통해서 각 모듈 프로젝트에서View, ViewModel 등록하고 Bootstrapper에서 컨테이너에 등록 종속성 주입으로 받음 각 모듈에서 INavigateModule 상속받아서 구현해주고 공통 모듈의 템플릿에서 각 모듈의 NavigateViewCommand 실행 되도록 함. 메인 프로젝트 모듈에서공통 모듈의 템플릿 사용. https://medium.com/c-sharp-programming/introduction-to-a-plug-in-architecture-using-the-example-of-a-wpf-application-7f2e225b647a Introduction to a plug-in archit..
-
[C#] // 주석C#/기초 2025. 3. 28. 08:51
https://learn.microsoft.com/ko-kr/dotnet/csharp/language-reference/xmldoc/recommended-tags 권장 XML 문서 태그 - C# reference이 문서에서는 XML 문서의 권장 유형 태그와 멤버에 대한 구문 및 정의를 제공합니다.learn.microsoft.com Example : 이 요소의 값은 Visual Studio의 IntelliSense에 표시됩니다. cref *: 이 요소의 값은 Visual Studio의 IntelliSense에 표시됩니다. **
-
[C#] NUnit TestC#/기초 2025. 3. 27. 17:12
https://dlsenfl.tistory.com/entry/C-UnitTest [C#] UnitTestNUnit vs. XUnit vs. MSTestWe now compare the C# unit testing frameworks from an attribute usage point of view along with a simple example, which demonstrates the code flow.Attributes in test frameworksIrrespective of the C# unit testing framework, attributdlsenfl.tistory.com # 생성자: 테스트 클래스에서생성자는 전체 테스트 통틀어 한번 실행.# [Setup] : [Test] 마다 실행...