码迷,mamicode.com
首页 > 其他好文 > 详细

C#,CLI类型对应关系

时间:2014-09-28 09:44:31      阅读:322      评论:0      收藏:0      [点我收藏+]

标签: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).

C#,CLI类型对应关系

标签:sp   on   c   r   ef   c++   bs   as   type   

原文地址:http://www.cnblogs.com/rain2012qf/p/3997636.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!