J
jamie
hi,
I'm trying to pass a List<double> array from C# to a C++ class library
but I get the following error:
"No overload for method 'zzz' takes '1' arguments"
My C++ method in the library has 1 argument:
zzz(List<double> x)
and i'm calling it from C# with:
List<double> test = new List<double>();
test.Add(0.123);
objTest.zzz(test);
Any pointers/links to information on this topic would be appreciated
Jamie
I'm trying to pass a List<double> array from C# to a C++ class library
but I get the following error:
"No overload for method 'zzz' takes '1' arguments"
My C++ method in the library has 1 argument:
zzz(List<double> x)
and i'm calling it from C# with:
List<double> test = new List<double>();
test.Add(0.123);
objTest.zzz(test);
Any pointers/links to information on this topic would be appreciated
Jamie