C ++托管数组大小

时间:2011-04-14 13:21:23

标签: arrays c++-cli argument-passing

我有这个

function(array<Object^>^ a)

我怎么知道这个数组的长度?像C ++一样,大小必须附带函数吗?

谢谢,

2 个答案:

答案 0 :(得分:6)

您案件中的功能:

$("#grid").on("jqGridToolbarBeforeSearch", function (e) {
    var filters = $(this).jqGrid("getGridParam", "postData").filters;
    if (typeof filters === "string") {
        filters = $.parseJSON(filters);
    }
    if (filters) {
        /* add here you custom tests */
        return "stop";
    }

    return e.result; // forward the result of the last event handler
});

答案 1 :(得分:3)

请记住,所有类都来自.net库,因此在一般情况下,您可以查看通用的.net文档。这是数组类docs