使函数agruments只能在c ++ / cli中读取

时间:2017-02-15 05:06:52

标签: c++-cli

如何在我的C ++ / CLI代码中只读取IList?

原生代码

void foo(const double a)
{
//here using const makes "a" read only
}

托管代码

void foo(IList<double> ^a)
{
// how can i make "a" read only
}

0 个答案:

没有答案