2
Answers

How do I convert a list element to text?

Clyde Eisenbeis

Clyde Eisenbeis

Nov 29
372
1

xaml:

<TextBox  x:Name="gTBxChar2"/>

 xaml.cs

List<string> liststStringParsed = new List<string>();
liststStringParsed.Add("a");
liststStringParsed.Add("b");
liststStringParsed.Add("c");
gTBxChar2 = liststStringParsed[2];

"gTBxChar2 = liststStringParsed[2]" is not acceptable.

How do I convert a list element to text?

Answers (2)