반응형 tuple2 [C#] Tuple 사용하기 1. 함수의 return type 에 괄호로 리턴 형식과 이름을 지정합니다. 2. return 할때 그 형식에 맞게 괄호 안에 값을 넣어서 리턴합니다. 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 (t.. 2021. 10. 20. [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 반응형