Advertisement
Guest User

Untitled

a guest
Apr 4th, 2020
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.15 KB | None | 0 0
  1. using System;
  2.                    
  3. public class Program
  4. {
  5.     public static void Main()
  6.     {
  7.         var intArray = new[] {1, 2, 3, 4};
  8.         Console.Write(intArray[10]);
  9.     }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement