Overload resolution with params argument

  • Thread starter Thread starter M Jared Finder
  • Start date Start date
M

M Jared Finder

What are the rules for method overload resolution when there are
functions with a params argument? No mention of params is made in
section 7.4.2 of the C# specification on MSDN (titled "Overload
Resolution").

-- MJF
 
Hi MJF,

Paragraph 10.5.1, defines a Parameter Array as what we normally call a
params parameter. So, whereever you read the term "parameter array" in
7.4.2, think of it as the params parameter.

Joe
 
Back
Top