Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

c# parameters question

Tags:

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?

EDIT: how do I delete a question? parse has been overloaded facepalm

like image 775
iteratorr Avatar asked Jun 01 '10 21:06

iteratorr


1 Answers

it is overloaded parse exists that accepts 3 arguments.

like image 67
zerkms Avatar answered Sep 20 '22 11:09

zerkms