So I’m diving into C++/CLI with the prospect of closer interaction with C++ libraries. First thing I stuck with for now:
“IsChanged” of “Pin” and “IDiffSpread” is freaking out compiler:
VVVV::PluginInterfaces::V2::NonGeneric::ISpread::default::get’: ambiguous call to overloaded function
I know I can just (probably) subscribe to the Changed event but if possible I’d like to minimize the amount of extreme fiddling what C++ feels like after C#.
“SliceCount” of IDiffSpread produces the same “ambiguous call” message, Pin seems to be fine with the compiler.
also it’s only kind of an annoyance but the indexer of “IDiffSpread” (MySpreadi) returns “System.Object” in C++/CLI rather than the type set in pointy-brackets parameters.
anybody have any suggestions/workaround on the above things?