c# parameters question
Posted
by n00b
on Stack Overflow
See other posts from Stack Overflow
or by n00b
Published on 2010-06-01T21:20:18Z
Indexed on
2010/06/01
21:23 UTC
Read the original article
Hit count: 280
c#
I am new to c# and need help understanding what going on in the following function
public bool parse(String s)
{
table.Clear();
return parse(s, table, null);
}
where table is a Dictionary. I can see that is is recursive but how is parse being passed three params when it is defined to take just a string?
© Stack Overflow or respective owner