In my C# code, I need to call a function from a C++ Dll that I wrote.The function is generic. So , should I just import it like this:
[DllImport("myDll.dll")]
private static extern TypeName functionName<TypeName>( int arg1, int arg2 );
Is this correct syntax? Thanks.