'이것이 C#이다 개정판'의 chapter 5를 정리한 글입니다. Switch문(Statement)C#에서의 'Switch 문'은 오로지 정수 형식 하나만 지원하는 C와 C++과 다르게 문자열 형식과 데이터 형식 또한 지원합니다. [예시]using System;using static System.Console;namespace Switch{ class MainApp { static void Main(string[] args) { object obj = null; string s = ReadLine(); if (int.TryParse(s, out int out_i)) obj = ou..