C#
-
[C#] Configure C# language versionC#/기초 2025. 5. 29. 15:50
# 일반적으로 프레임워크에 따라 자동 설정. # .csproj 강제 편집 # 일반적으로 프레임워크에 따라 자동 설정.https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/configure-language-version Configure language version - C# referenceLearn how to override the default C# language version manually. The C# compiler can support any language version up to the version in the installed SDK.learn.microsoft.com # .csproj 강제 편집htt..
-
[C#] WebRequest to HttpClient MigrationC#/기초 2025. 5. 28. 15:22
EX) NaverAPI 호출 #WebRequest: 더 이상 쓰지 말란다. #HttpClient 걍 url 줘도 들어는 간다. 호출. https://learn.microsoft.com/ko-kr/dotnet/fundamentals/networking/http/httpclient-migrate-from-httpwebrequest HttpWebRequest에서 마이그레이션 - .NETHttpWebRequest에서 HttpClient로 마이그레이션하는 방법을 알아봅니다.learn.microsoft.com https://eehnuyh.tistory.com/2 [C#/API]네이버 연관 검색어 프로그램 2(공통프로젝트(1):Rest API Class)네이버 API 및 11번가 Open API를 이용해 키..
-
[WPF] MouseOver, ScaleStyleC#/WPF 2025. 5. 15. 09:30
https://github.com/DevExpress-Examples/wpf-create-a-fluent-design-using-appearance-options/blob/804cf8afca6e0ea703cfb3e927d45af47ccc664a/CS/FluentDesignTemplate/ViewResourceDictionary.xaml wpf-create-a-fluent-design-using-appearance-options/CS/FluentDesignTemplate/ViewResourceDictionary.xaml at 804cf8afca6e0ea703cfbThis example creates a view styled according to Fluent Design with DevExpress com..
-
[C#] ObservableCollection AddrangeC#/기초 2025. 5. 14. 13:44
public static class ObservableCollectionExtensions { public static void AddRange(this ObservableCollection lista, IEnumerable items) { foreach (var item in items) { lista.Add(item); } } } https://gist.github.com/brunossn/197f0ad0820258da27f54f917d11ac49 ObservableCollection.AddRange() extension in C#ObservableCollection..
-
[C#] Return 반환 값 2개C#/기초 2025. 5. 8. 08:39
ex) var (command, arguments) = GetCommandAndArguments(args); static (string command, string[] arguments) GetCommandAndArguments(string[] args){ return args switch { [var script] when script.EndsWith(".py") => ("python", args), [var script] when script.EndsWith(".js") => ("node", args), [var script] when Directory.Exists(script) || (File.Exists(script) && script.EndsWit..
-
[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#을 사용하여 개발 환경을 설정하고 첫 번째 플랫폼 간 하이브..