It seems to be an Amit Kalani's book exercise. Is it? Really great book.
Well, select menu View->Class View (or press Ctrl+Shift+C). On the Class View window, select the class where you would like to add a new method. Right-Click this class and select Add...-> Add Method... . Visual Studio opens a form where you could set the method signature. It's a simple and intuitive form, I think you will find the way from here.
Cheers,
best wishes
I took 3 months for each test, 70-315 and 70-316. Now, I'm preparing for the last one, 70-320, but I have been working with .Net about 2 years. I didn't do any classes, just read the Microsoft Training Kits and the Amit Kalani's books. Actually, MS Training Kits are an incomplete source of information, but Kalani's books are really, really good. He writes very well and his books has all the information that you need to pass. Read with attention and you'll pass for sure.
Good luck!
i am getting the errors Vendor aVendors =
Cannot apply indexing with [] to an expression of type WindowsApplication4.Vendor'
private void Form1_Load(object sender, System.EventArgs e)
{
aVendors[0] = new Vendor("Demetrius");
aVendors[1] = new Vendor("Salena");
aVendors[2] = new Vendor("Kathy");
txtVendorName.DataBindings.Add("Text", aVendors, "VendorName");
}
private void btnPrevious_Click(object sender, System.EventArgs e)
{
this.BindingContext[aVendors].Position -= 1;
}
private void btnNext_Click(object sender, System.EventArgs e)
{
this.BindingContext[aVendors].Position += 1;
}
}
}
Probably your array declaration is incorrect. Try this:
Vendor[] aVendors =
Well, some people thinks that a college graduation is enough, some people think that any certification is a good thing.
I think MCAD is a good certification for developers, maybe a MCSD certification is a better choice for software engineers 'cause it evolves all the life cycle of a software.
But you must be aware, Microsoft will release the .Net Framework 2.0 next november 7 and the certifications rules will change. See this article:
http://mcpmag.com/news/print.asp?EditorialsID=821
In my opinion, certification is a "plus" in a resume, not mandatory. I know a lot of people really good in several tools that doesn't have any certification. The good thing about certification is that it makes you study hard, so you actually have to learn a lot of useful things.