If you're like me and would rather just see the code...
Code:
void paramsExample(object arg1, object arg2, params object[] argsRest)
{
foreach (object arg in argsRest)
{ /* .... */ }
}
{
foreach (object arg in argsRest)
{ /* .... */ }
}
What do you get when you throw the ambitious procrastinator with an inspiring lackadaisic? A bit of code that resides out of the ordinary.
2 comments:
You rock. I don't know if I'm a lazy coder, but I love how you put the code up with "all I want to see is the code."
CAWYM. (Couldn't agree with you more). Okay, I'm lazy.
If the code looks good, then I will read the text :)
We're coders, not authors. We read code!
Post a Comment