How to call a method located inside a C# DLL, from VB.Net, with late binding
问题 I can't get a grip on how the various "Init", "Accumulate" ... methods work, to enable calling a method located inside a DLL, from VB.Net code. Let's say the method to call has the following signature : public double ComputeMeanPosition(ref SortedList<DateTime, double> posByTime) Would you please kindly point me to an actual example of the use of the methods, or simply give me a few hints as how to actually pass the parameters to the method, call it and fetch the results ? @Olivier Jacot