![]() ![]() |
Films/DVD Asylum Movies from comedy to drama to your favorite Hollyweird Star. |
For Sale Ads |
Use this form to submit comments directly to the Asylum moderators for this forum. We're particularly interested in truly outstanding posts that might be added to our FAQs.You may also use this form to provide feedback or to call attention to messages that may be in violation of our content rules.
Original Message
RE: foo
Posted by dwill123 on September 6, 2008 at 16:36:59:
public void Foo( byte i, byte j, string k)
{
//Main body
}
public void Foo( byte i, byte j) {
Foo(i, j, "");
}
public void Foo( byte i) {
Foo(i, 2, "");
}
private void Command1_Click(Object eventSender, EventArgs eventArgs)
{
Foo(1);
Foo(1, 5);
Foo(1, 5, "Hello");
Foo(1, 2, "Hello");
}