Hello I'm just starting in c # and am practicing with arrays, my question is how I can add a name called "steve" the array of this code:
string[] names = new string[] {"Matt", "Joanne", "Robert"};
foreach (string i in names)
{
richTextBox1.AppendText(i + Environment.NewLine);
}
anyone can help me?