[C#] 인덱서인덱서(Indexer)는 인덱스를 이용해서 객체 내의 데이터에 접근하게 해주는 프로퍼티이다.인덱서 선언class 클래스이름 { 한정자 인덱서형식 this[형식 index] { get { // index를 이용하여 내부 데이터 변환 } set { // index를 이용하여 내부 데이터 저장 } } }Item 클래스를 정의하고, Item 배열을 필드로 갖는 ItemList 클래스에 인덱서를 활용해보자Item 클래스class Item { public string Name{get;set;} public int Count{get;set;} public override string ToString() { return string.Format("(Name : {0}, Count : {1})", Na..