标签: 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 }