|                                 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);
}
 | 
 | 
  
        |                                 Andrei Smolin                				   
 Add-in Express team
 
 
 Posts: 19177
 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
 | 
 |