C#
-
[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
-
[C#] LINQ SelectManyC#/기초 2025. 4. 3. 15:45
y는 l.yeares https://jettstream.tistory.com/121 C# Select vs SelectManySelect() 메서드 객체에 담긴 여러 데이터 중에서 원하는 부분만 손쉽게 추출하여 새로운 형태의 컬렉션으로 생성한다. public class Program { public class Winner { public string name; public int[] years; } public staticjettstream.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] 마다 실행...
-
[WPF] Xmal svg imageC#/WPF 2025. 3. 25. 14:29
1. DevExpress 이용 https://docs.devexpress.com/WPF/120131/common-concepts/images/svg-images SVG Images | WPF Controls | DevExpress DocumentationThis topic describes how to display SVG images and change their palettes. You can use the SVG Icon Builder or any third-party vector graphics editor to create SVG images. Display SVG Images in XAML DevExpress components include properties of the ImageSourc..