- using System;
- using System.Collections.Generic;
- using System.Data;
- using System.Text;
- using System.Windows.Forms;
- namespace FirstProgram
- {
- public partial class Form2 : Form
- {
- public Form2()
- {
- InitializeComponent();
- }
- private void Form2_Load(object sender, EventArgs e)
- {
- string sample = "I am \n coming \n from \n Forget Code";
- MessageBox.Show(sample);
- txtSample.Text = sample;
- }
- }
- }
- using System;
- using System.Collections.Generic;
- using System.Data;
- using System.Text;
- using System.Windows.Forms;
- namespace FirstProgram
- {
- public partial class Form2 : Form
- {
- public Form2()
- {
- InitializeComponent();
- }
- private void Form2_Load(object sender, EventArgs e)
- {
- string sample = "I am \n coming \n from \n Forget Code";
- MessageBox.Show(sample);
- string newLine = Environment.NewLine;
- txtSample.Text = "I am"+newLine+"coming"+newLine+" from " +newLine+ "Forget Code";
- }
- }
- }