H
HuYi
Hi,everyone,I want to get a string as '\u65e0\u6cd5' in TextBox,but when I
trace the program,I found that TextBox.Text=@"\u65e0\u6cd5",
But I want "\u65e0\u6cd5",not @"\u65e0\u6cd5".
I used TextBox.Text.ToArray(),the result:char[] chars =
{'\','u','6','5'....}.
I need char[] chars = {'\u65e0','\u6cd5'}
How should I do?Thanks.
trace the program,I found that TextBox.Text=@"\u65e0\u6cd5",
But I want "\u65e0\u6cd5",not @"\u65e0\u6cd5".
I used TextBox.Text.ToArray(),the result:char[] chars =
{'\','u','6','5'....}.
I need char[] chars = {'\u65e0','\u6cd5'}
How should I do?Thanks.