I developped an API using C# .NET in which there's a function with a "System.Type" as parameter : "public string MyFunction(System.Type myType) { ... }"
This function is COM visible.
In an Excel workbook, I reference the API (MyApi) and I want to call this function but I don't find any way to do so. Is it possible ?
Public Sub test()
Dim t As String
t = MyApi.MyFunction(???)
End Sub
Thank you very much.