Function Overloading

Add-in Express™ Support Service
That's what is more important than anything else

Function Overloading
 
Ashim Mishra


Guest


Hi Team,
Is UDF function/method overloading supported in automation-addin or xll-addin?
If yes then please share the document/article to refer.

eg:

public static object Add(int x, int y)
{
 return x + y;
}
public static string Add(string x, string y)
{
 return string.Concat(x, y);
}
Posted 23 Jul, 2020 08:22:42 Top
Andrei Smolin


Add-in Express team


Posts: 18825
Joined: 2006-05-11
Hello Ashim,

Overloading is a feature of a programming language; no Excel API supports this.


Andrei Smolin
Add-in Express Team Leader
Posted 23 Jul, 2020 08:27:38 Top