discard
C# _ Discard (변수 무시)
필요한 이유 별도의 변수를 선언 할 필요가 없다. 또한 discards를 사용하면 메모리 할당을 줄일 수 있다. 코드의 의도를 투명하게 만들고 가독성과 유지 관리성을 향상시키는데 도움된다. 예제 코드 switch를 사용한 패턴 매칭 class Program { static void ProvideString(string statement) => Console.WriteLine(statement switch { "x" => "hello, x world", null => "hello, null world", _ => "hello, world" }); static void Main(string[] args) { ProvideString("x"); ProvideString(null); ProvideString("..