+ 1
Example of "strings" and "characters" index in C# indexers
This is the last statement from the lesson on indexers: "Arrays use integer indexes, but indexers can use any type of index, such as strings, characters, etc." Can anyone give example for this "strings" and "characters" index?
1 Answer
+ 6
Array["String"];
Array["C"];
Array[1];