in C/C++ I have
typedef char TDAStringType[256];
struct CMarketReqMarketDataField
{
TDACharType MarketType;
TDACharType SubscMode;
TDAIntType MarketCount;
TDAStringType MarketTrcode[20];
TDAStringType ErrorDescription;
}
Look at the member MarketTrcode, It seems stock an array of string/char *, but I need to pass values to this struct in C/C++ through C# string[] frontend, How can I make it? using SWIG 4.0.2