[C#] 16장 패턴일치 심화
✅ 1. switch 표현식 (Switch Expressions)C# 8버전 부터 추가된 기능으로, 기존 switch 문보다 간결하고 표현력이 좋은 기능입니다. 값을 직접 변환하거나 패턴일치를 조합하면 더욱 좋아집니다.using System;class Program{ static void Main() { object obj = 5.54; // switch 표현식 호출 string typeDescription = GetTypeDescription(obj); Console.WriteLine(typeDescription); } // switch 표현식 method static string GetTypeDescription(object..