반응형 튜플1 [C#] Tuple 사용 방법 먼저 예제로~ (아래쪽엔 설명) 예제 - Tuple 을 리턴하는 메소드 private (bool isValid, string hh, string mm) getControlValues() { if (comboBox_hh.SelectedItem == null || comboBox_mm.SelectedItem == null) { MessageBox.Show("Time is required."); return (false, "", ""); } string hh = comboBox_hh.SelectedItem.ToString(); string mm = comboBox_mm.SelectedItem.ToString(); return (true, hh, mm); } 메소드 리턴 타입을 ( ) 안에 타입과 함께 변수명을.. 2021. 6. 1. 이전 1 다음 728x90 반응형