[C#] n이하의 홀수 덧셈 Linq를 이용하여 n 이하의 홀수를 전부 더해봅시다. int n = 10; var oddSum = Enumerable.Range(0, n).Where(x => x % 2 == 1).ToArray(); 프로그래밍/C# 2022.12.04
[Python] Can't find a default Python. 해결 간단한 python 스크립트 작성 후 실행하던 중 Can't find a default Python. 오류 메시지가 확인됐습니다. 오류 메시지 원인 원인은 심플합니다. python 파일을 실행하려는데 어떤 버전을 실행시킬지 설정이 필요하다는 것 해결책 python파일 -> 속성 연결 프로그램 -> 변경 사용 할 python 버전 선택 프로그래밍/Python 2022.12.03
[Python] 파이썬 설치 경로 확인하기 대개 파이썬을 설치 후 파이썬 설치 경로를 알아야할 때가 있습니다. 저같은 경우 MS Store에서 설치했는데, 설치 경로 확인이 안되서 불편함이 있더군요. 파이썬 설치 경로 찾기 실행 -> cmd 실행하기 아래 명령어 순으로 입력하기 python import sys sys.executable 프로그래밍/Python 2022.12.03
[C#] Enum의 Index값 가져오기 Convert.ToInt32()를 사용합니다. public enum TESTENUM { KOREA, USA, CHINA, JAPAN } var index = Convert.ToInt32(TESTNUM.USA); 프로그래밍/C# 2022.11.08
[프로그래밍] 디자인패턴 1. https://refactoring.guru/ko/design-patterns 2. kakao-SWdesignpattern / designpattern · GitLab kakao-SWdesignpattern / designpattern · GitLab GitLab.com gitlab.com SW디자인패턴 프로그래밍 2022.11.07
[C#] WPF Window Close 이벤트 처리 Case1 출처: https://ehclub.co.kr/1987 [언제나 휴일:티스토리] using System; using System.Windows; namespace Ex_윈도우_이벤트_핸들러_추가하기 { public partial class Window1 : Window { public Window1() { InitializeComponent(); this.Closed += new EventHandler(Window1_Closed); } void Window1_Closed(object sender, EventArgs e) { MessageBox.Show("창이 닫혔음"); } } } Case2 ClassButtonFilterDialogViewModel.cs public class ClassButt.. 프로그래밍/C# 2022.10.27
[C#] List 타입 변경 List 에서 List 으로 타입 변경을 해봅시다. List intList = new List() { 1, 2, 3, 4, 5, 6, 7 }; List strList = intList.Select(num => num.ToString() + "번").ToList(); 결과 프로그래밍/C# 2022.10.13
[C#] 리스트에서 랜덤으로 값 가져오기 static void Main(string[] args) { var rnd = new Random(); var codes = new List() { 103,104,105,106,109,110,111 }; var rndCode1 = codes[rnd.Next(codes.Count)]; } 프로그래밍/C# 2022.10.11
[WPF] INotifyPropertyChanged 구현 https://nomadcoder.tistory.com/entry/WPF-%EC%B4%88%EA%B0%84%EB%8B%A8-INotifyPropertyChanged-%EA%B5%AC%ED%98%84%ED%95%98%EA%B8%B0 프로그래밍/C# 2022.10.07
[WPF] Textbox 값 변경 이벤트 XAML Here is the initial text in my TextBox. Each time the contents of this TextBox are changed, the TextChanged event fires and textChangedEventHandler is called. CS // TextChangedEventHandler delegate method. private void textChangedEventHandler(object sender, TextChangedEventArgs args) { // Omitted Code: Insert code that does something whenever // the text changes... } // end textChangedEvent.. 프로그래밍/C# 2022.10.07