1

我再次坚持将 C 结构编组到 C# 中。这是我要编组到 C# 的内容。

C函数签名如下

 int GetParametersDescription(unsigned int *numParams,
                             OP_PARAMETER_INFO **parameterInfo,
                             unsigned int *numVars,
                             OP_VARIABLE_INFO **variableInfo);

输出参数

numParams:模型参数的数量。
parameterInfo:返回的参数结构列表。列表的大小为 numParams。
numVars:模型变量的数量。
variableInfo:返回的变量结构列表。列表的大小为 numVars。

C中的OP_PARAMETER_INFO结构签名

typedef struct OP_PARAMETER_INFO {
    unsigned id;             // Parameter Id
    char *path;              // Parameter's path in the model
    char *name;              // Parameter's label if any
    char *alias;             // Parameter's alias if any.
    struct OP_VARIABLE_INFO *varInfo; // Pointer on OP_VARIABLE_INFO if variable exist
    unsigned nbRows;         // Number of rows for this parameter
    unsigned nbCols;         // Number of cols for this parameter
    double *values;          // List of values, nbValue = nbRows * nbCols
    OP_SEARCH_RESULTS exist; // This is an enum
    unsigned newParamId;     // ID of the estimated parameter if does not exist
} OP_PARAMETER_INFO;

C中的OP_VARIABLE_INFO结构签名

typedef struct OP_VARIABLE_INFO {
    unsigned id;                      // Variable Id
    char *name;                       // Variable name
    unsigned int nbParams;            // Number of parameters associated with the variable
    struct OP_PARAMETER_INFO** param; // List of pointers of OP_PARAMETER_INFO structure
} OP_VARIABLE_INFO;

OP_SEARCH_RESULTS 是一个枚举,签名如下所示

typedef enum {
    OP_SEARCH_NOT_FOUND,
    OP_SEARCH_FOUND_EXACT,
    OP_SEARCH_FOUND_DIFFERENT,
    OP_SEARCH_FOUND_ESTIMATION
} OP_SEARCH_RESULTS;

我确实尝试过在 C# 中制作结构,但它们似乎都不起作用。您能否帮我在 C# 中定义这些结构并在 P/invoke 方法中调用它们并提取结构信息.....

4

0 回答 0