static void Main() { try { string str = null; ProcessString(str ); } catch (ArgumentNullException e) { Console.WriteLine("{0} 1St", e); } catch (Exception e) { Console.WriteLine("{0}2nd", e); } }
Login to post response