I'm trying to figure out how to handle filenames in Tamil. I need to shorten them like this: "foobar.gif" -> "foo...gif".
I've learned today that some languages use more than one char to represent a letter and I discovered that C# has the Rune concept.
I can't get this to work with Tamil.
Take "தமிழ்.gif" for example:
I had hoped that "தமிழ்.gif".Length should be 6 but it's 9:
How can I get do a proper substring like "தமிழ்.gif".Substring(2) => "தமி" instead of "தம".
What am I missing?