问题 I have an Excel AddIn that I load from a C# file. On a spreadsheet, I am able to call functions from this AddIn without trouble, however, I am unable to do so using VBA. Suppose the name of the addin is "ExcelAddIn" and the class in question is "Functions". In VBA, I have made available the reference (via Tools > References) and I would have expected the following to work: Dim addin As ExcelAddIn.Functions Set addin = New ExcelAddIn.Functions result = addin.ArbitraryFunction(...) But this