-
[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..
-
[기타] InstallShield Removal file Scheduling기타자료 2025. 3. 31. 16:42
Add File Removal 프로퍼티 추가 Modules 폴더안의 파일들 (*.*)설치 및 삭제할 때 삭제 Modules 폴더안의 폴더는 영향이 없음.Modules 폴더안의 파일에만 반영 됨. 아래 파일들 버전업 설치할 때 삭제 후 다시 설치 함. https://docs.revenera.com/installshield24helplib/helplibrary/RemoveFileTableSprt.htm Removing Files and Folders from Target Systems2. In the Setup Design or Components tree, expand the node of the component that contains the file or folder that you..
-
[VS] MSTest vs VSTestVisual Studio 2025. 3. 31. 09:06
VSTest 로 사용 함. https://dynatechconsultancy.com/blog/microsoft-testing-platform-vs-vstest-comprehensive-2024-guide-choosing-the-right-unit-testing-solution Microsoft.Testing.Platform vs. VSTest - A Comprehensive 2024 Guide to Choosing the Right Unit Testing SolutionMicrosoft.Testing.Platform & VSTest offer unique benefits. Each one of them is tailored for specific project requirements. Choo..
-
[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] 마다 실행...