В моем коде что-то не так с помощью split в winform
I want output is : hello mynameis lam But it only show "lam" in the textBox1. I don't know why. Can you help me to fix it. Thank you so much!!
Что я уже пробовал:
У меня есть этот код:
private void Form1_Load(object sender, EventArgs e) { string s="hello\amynameis\alam"; string[] arr = s.Split('\a'); foreach (string str in arr) { textBox1.Text = str + "\n"; } }