using static System.Console;
public static void Main()
WriteLine(nameof (StringBuilder) + "." + nameof (StringBuilder.Length));
WriteLine(new Indexer(new string[]{"Hello","World"})[1]);
public string this[int index] => words[index];
public Indexer(string str)
public Indexer(string[] str)