In Reply to: foo posted by foo on September 5, 2008 at 14:36:40:
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");
}
This post is made possible by the generous support of people like you and our sponsors:
Follow Ups
- RE: foo - dwill123 16:36:59 09/06/08 (0)