Esempio n. 1
0
        void IIndexedElement.GetText(SharedString text, int index)
        {
            var child = _children[index];

            if (child.Tag != null)
            {
                lock (child.Tag)
                {
                    text.Copy(child.Tag.StringBuilder);
                }
            }
            else
            {
                text.Format("{0}", index + 1);
            }
        }