Click here to Skip to main content
16,004,782 members

Comments by Member 12711085 (Top 1 by date)

Member 12711085 1-Oct-16 10:08am View    
Thank you for your help. But it only connect string together, like this: "hellomynameislam". It's not enter.
A person helped me. You can see:
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

private void Form1_Load(object sender, EventArgs e)
{
string s="hello\amynameis\alam";
textBox1.Text = s.Replace("\a", Environment.NewLine);
}
}