{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
string str = textBox1.Text;
char first = str[0];
string surplus = str.Substring(1);
textBox1.Text = surplus + first;
}
private void button2_Click(object sender, EventArgs e)
{
string str = textBox1.Text;
int i = str.Length-1;
char first = str[i];
string surplus = str.Substring(0,i);
textBox1.Text = first + surplus;
}
}
}