Multifile Assemblies?

How do i add a static member using the class view...this static method should be named Add() that returns an int value and accepts two int parameters first and second?
[168 byte] By [Dpowers] at [2008-3-3]
# 1
Dpowers,

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,

FBCJunior at 2007-9-9 > top of Msdn Tech,Visual C#,Visual C# IDE...
# 2
U guess it buddy, that Kanlani Book is pretty good it gives you a broad view into developing in the IDE at a full blast! glad to see you know of it too...Now i know i am on the right track...thanks that way worked out fine too...How long did it take you to prepare for the MCAD and did you take any classes at any of those computer learning centers?

best wishes

Dpowers at 2007-9-9 > top of Msdn Tech,Visual C#,Visual C# IDE...
# 3
DPowers,

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!

FBCJunior at 2007-9-9 > top of Msdn Tech,Visual C#,Visual C# IDE...
# 4
Could you help me out with this example....its example 5.3 Scrolling through data, using the Binding context object

i am getting the errors
Cannot apply indexing with [] to an expression of type WindowsApplication4.Vendor'

Vendor aVendors = new Vendor[3];

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;

}

}

}

Dpowers at 2007-9-9 > top of Msdn Tech,Visual C#,Visual C# IDE...
# 5
DPowers,

Probably your array declaration is incorrect. Try this:

Vendor[] aVendors = new Vendor[3];

FBCJunior at 2007-9-9 > top of Msdn Tech,Visual C#,Visual C# IDE...
# 6
Hey i was wondering do you think the MCAD will be a good thing to obtain for a person who just graduated college and is looking to get into the software egineering field? thanks for that help too
Dpowers at 2007-9-9 > top of Msdn Tech,Visual C#,Visual C# IDE...
# 7
Dpowers,

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.

FBCJunior at 2007-9-9 > top of Msdn Tech,Visual C#,Visual C# IDE...