标签:sp on c r ef c++ bs as type
C#, value type passed by value: (int a)
— C++/CLI: the same: (int a)
C#, value type passed by ref: (ref int a)
— C++/CLI: the same: (int %a)
C#, reference type passed by value: (string a)
— C++/CLI: (string ^a)
C#, reference type passed by ref: (ref string a)
— C++/CLI: (string ^%a)
.
标签:sp on c r ef c++ bs as type
原文地址:http://www.cnblogs.com/rain2012qf/p/3997636.html