Display Messagebox with Parameters

  1. First show a single - argument dialog box with MessageBox.Show  
  2. Messagebox.show(".Net is awesome")  
  3. Show a two - argument dialog box with MessageBox.Show.  
  4. Messagebox.show(".Net is awesome""Important ")  
  5. Use a three - argument dialog box with MessageBox.Show.  
  6. MessageBox.Show(".Net is awesome""Important", MessageBoxButtons.OKCancel)  
  7. Use four parameters with MessageBox.Show.  
  8. MessageBox.Show(".Net is awesome""Information", MessageBoxButtons.OKCancel, MessageBoxIcon.Warning)  
  9. Use five arguments with MessageBox.Show.  
  10. MessageBox.Show(".Net is awesome""Important", MessageBoxButtons.OKCancel, MessageBoxIcon.Warning, MessageBoxDefaultButton.Button2)