SORU - 2 / 15

  • S

    Aşağıdaki kodda boşluğa ne gelmelidir?

    using System;
    namespace TryCatch
    {
       class Program
       {
          static void Main(string[] args)
         {
             try
             {
                int[] myArr = {0,1,2,3};
                myArr[4] = 4; 
             }
             catch(Exception ex)
             { 
                Console.WriteLine(ex.___); 
                Console.ReadLine();
             }
    }}}
    
  • A

    Note

  • B

    Alert

  • C

    Message

  • D

    Information