C# indexer

    [C#] 인덱서 (Indexer)

    [C#] 인덱서 (Indexer)

    1. 핵심 정리 using System; class Sentence { private string[] words = null; public Sentence(string s) { words = s.Split(); } } class Program { public static void Main() { Sentence s = new Sentence("Dog is Animal"); s[0] = "Cat"; Console.WriteLine(s[0]); // Cat Console.WriteLine(s); // Cat is Animal } } ① 객체를 배열 처럼 사용할 수 있게 하는 문법 => C++에서 [ ] 연산자 재정의 => 속성(Property)와 유사한 문법 using System; class Sentenc..