30. C# 7.0에서 throw문 표현식, finally 절
·
💻 Programming Language/C#
C# 7.0에서의 throw문의 표현식(Expression) using System.Collections; //c# 7.0에서의 throw문의 표현식(Expression) namespace ExceptionEx { class Program { static void Main(string[] args) { try { int? aa = null; int bb = aa ?? throw new ArgumentNullException(); } catch (ArgumentNullException e) { Console.WriteLine(e.Message); } try { int[] arr = {1, 2, 3 }; int idx = 5; int value = arr[idx >= 0 && idx < 4 ? idx : t..