Hello, I am a total begginer to c#.
After searching a lot, I decided to read the Head first book.
My code, for page 47, is not going good. Can someone tell me the error?
Ps: Sorry for the bad English /:
namespace WindowsFormsApplication2
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void pictureBox1_Click(object sender, EventArgs e)
{
MessageBox.Show(“Contact List 1.0.\nWritten by: me”, “About”);
}
}
}
Thank you.