c# array
![[C#] 배열 기본](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2Fcr29R0%2FbtqBXVJVw3y%2FZcXmoQBvmG9NJzAV29pzNk%2Fimg.png)
[C#] 배열 기본
1. 핵심 정리 using System; class Program { int[] arr1; int[] arr2 = new int[5]; int[] arr3 = new int[5] {1, 2, 3, 4, 5}; int[] arr4 = new int[] {1, 2, 3, 4, 5}; int[] arr5 = {1, 2, 3, 4, 5}; Type t = arr5.GetType(); Console.WriteLine(t.FullName); Console.WriteLine(arr5.Length); // 5 Console.WriteLine(arr5.GetLength(0)); // 5 Console.WriteLine(arr5.GetValue(3)); // 4 Console.WriteLine(arr5.GetLowerBo..