indexer (1) 썸네일형 리스트형 C# 문법- INDEXER (FEAT PROPERTY) using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApp15 { class TESTINT { private int[] array = new int[6]; public int this[int index] { get { return array[index]; } set { array[index] = value; } } } class TEST { private string[] _array = new string[5]; public string this[int index] { get { return _array[index]; }.. 이전 1 다음