InvokeMethod from C#/CSharp for a function with Struct type argument
I am in the process of creating a .Net utility to help us with some ColdFusion functions and in the .Net utility I still need to call some ColdFusion functions. The function is expecting a Struct type.
After much internet searching I have been unable to determine what type of object I need to use in C#/CSharp that will convert to the type="Struct" argument.
I receive the following error in C#/CSharp when trying to call the InvokeMethod method.
"... cannot convert to type 'Map'"
I have tried to use HashTable, DataTable, etc...
Is there anyway I can invoke a ColdFusion function with a Struct type argument from C#/CSharp?
