private void butT1_Click(object sender, EventArgs e) { rtbVýpis.Text = "Výpis pomocí for"; for (int i = 0; i < tbText.Text.Length; i++) { char t = tbText.Text[i]; string s = tbText.Text.Substring(i, 1); rtbVýpis.Text += $@" {i+1} - {t} ({(int)t})"; } } private void butT2_Click(object sender, EventArgs e) { rtbVýpis.Text = "Výpis pomocí foreach i++"; int i = 1; foreach (var t in tbText.Text) this.rtbVýpis.Text += $@" {i++} - {t} ({(int)t})"; } } private void butT3_Click(object sender, EventArgs e) { this.rtbVýpis.Text = "Výpis pomocí foreach ++i"; int i = 0; foreach (var t in this.tbText.Text) this.rtbVýpis.Text += $@" {++i} - {t} ({(int)t})"; } }
|