private void button1_Click(object sender, EventArgs e)
{
string strInputText = "Name";
strInputText = "Hi" + strInputText
MessageBox.Show(strInputText);
}
{
string strInputText = "Name";
strInputText = "Hi" + strInputText
MessageBox.Show(strInputText);
}

Join the conversation! Your thoughts help the community grow.