-
[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#] 람다 Lambda 식C#/기초 2025. 4. 17. 09:20
ForEachmanagerClient.ServiceItems.ForEach(service => { if (!service.IsConnect) managerClient.HealthCheckAsync(service.HttpAddress); }); async 람다 managerClient.ServiceItems.ForEach(async service => { if (!service.IsConnect) await managerClient.HealthCheckAsync(service.HttpAddress); });
-
[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
-
[VS] Visual Studio log file location (ActivityLog.xml)Visual Studio 2025. 4. 8. 15:49
EX)C:\Users\iskim\AppData\Roaming\Microsoft\VisualStudio\17.0_f5a38fb4 https://dev.to/karenpayneoregon/view-visual-studio-activity-logs-better-2id8 View Visual Studio activity logs betterWhen Microsoft Visual Studio encounters issues a start to analyze issues is to start Visual Studio...dev.to
-
[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