SMART FACTORY - C# 간만에 INDEXER (FEAT PROPERTY)


SMART FACTORY - 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]; }..


원문링크 : SMART FACTORY - C# 간만에 INDEXER (FEAT PROPERTY)