using System.Globalization;
using System.Diagnostics;
public static void Main()
Stopwatch sw = new Stopwatch();
int typicalen = s.Length;
Console.WriteLine("Normal String {0} len = {1} in {2} ticks.",s, typicalen, sw.ElapsedTicks.ToString("N0"));
StringInfo stringInfoThrowAway = new StringInfo("Preload this function");
StringInfo stringInfo = new StringInfo(s2);
int stringInfoLength = stringInfo.LengthInTextElements;
Console.WriteLine("new StringInfo {0} len = {1} in {2} ticks.",s,stringInfoLength, sw.ElapsedTicks.ToString("N0"));
int[] textElemIndex = StringInfo.ParseCombiningCharacters(s);
int tEILength = textElemIndex.Length;
Console.WriteLine("ParseCombiningCharacters String {0} len = {1} in {2} ticks.",s,tEILength, sw.ElapsedTicks.ToString("N0"));
TextElementEnumerator charEnum = StringInfo.GetTextElementEnumerator(s);
while (charEnum.MoveNext())
Console.WriteLine("GetTextElementEnumerator String {0} len = {1} in {2} ticks.",s,i, sw.ElapsedTicks.ToString("N0"));
char[] charsInString = s.ToCharArray();
int charLength = charsInString.Length;
Console.WriteLine("ToCharArray {0} len = {1} in {2} ticks.",s,charLength, sw.ElapsedTicks.ToString("N0"));