String^ abc = gcnew String();
String^ abc = nullptr

override .net 类方法:

void  Reset() override
{....}

属性:

property virtual int Count
{
int get(){return this->m_Count;}
set(int value){this->m_Count=value;}
}

索引:

virtual property int default[int]
{
int get(int index){return this->m_Index;}
void set(int index, int value){this->m_Index=value;}
}

就是c#中的:

public int this[int index]
{
get{return this.m_Index;}
set{this.m_Index=value;}
}

数组:

array<ItemType>^ items;
cli::array<ItemType^>^ items;

泛型:

generic <class ItemType>
public ref class ItemCollection{}

类型:

c#:

typeof(someclass);

C++:

someclass::typeid;

namespace 这点很烦人

namespace A
{
namespace B
{
}
}

同名不同返回類型的函數(繼承接口)

virtual someTypename^ somemethodname() = basetypename::somemethod
{
return this->m_InnerList->GetEnumerator();
}

定义类,结构

public ref class Block {};         // reference class
public value class Vector {}; // value class
public interface class IFooBar {}; // interface class public ref class Shape abstract {};
public ref class Shape2D abstract : public Shape{};

sealed class

public ref class String sealed {};

http://msdn.microsoft.com/zh-cn/library/ms235220.aspx

折叠代码

#pragma region sometext
#pragma endregion sometext

定义.net中的enum:

public enum class eRtsState
:int
{
LoginFailed = -2,
ConnectFailed = -1,
Closed = 0,
Init = 1,
Connecting = 2,
Connected,
Logining,
Logined,
LoadingExchange,
LoadingContracts,
Opened,
};

定义Property:

public:
property eRtsState State
{
eRtsState get()
{
return (eRtsState)(int)_mdapi->State();
}
}

也可以直接使用

property eRtsState State;

最新文章

  1. .Net 转战 Android 4.4 日常笔记(10)--PullToRefresh下拉刷新使用
  2. XE2 泛型练习1
  3. cmake 编译 c++ dll 的一个例子(更新1)
  4. linux 查看系统信息命令(比较全)
  5. 视觉(3)blepo
  6. 图解I/O的五种模型
  7. 在NGINX作反向代理,CI(CodeIgniter)的PHP框架下限制管理目录的IP的实现
  8. Python模拟登陆
  9. Phalcon资源文件管理(Assets Management)
  10. 二分 Intel Code Challenge Elimination Round (Div.1 + Div.2, combined) D
  11. java8 去掉 perm 用 Metaspace 来替代
  12. str_repeat() 函数把字符串重复指定的次数。
  13. 深入解剖unsigned int 和 int
  14. Tri Tiling(hdu1143)
  15. 【MM系列】SAP的库存管理
  16. ajax 的一些参数
  17. k8s Nodeport方式下service访问,iptables处理逻辑(转)
  18. 没有任何秘密的 API:Vulkan* 简介
  19. 【MySql 】is not allowed to connect to this MySql server 无法访问远程MySQL数据库
  20. echart折线图,柱状图,饼图设置颜色

热门文章

  1. iOS9新特性之新添加的关键字
  2. 用live555将内网摄像机视频推送到外网服务器,附源码
  3. (转)live555学习笔记10-h264 RTP传输详解(2)
  4. 挂断电话demo
  5. iOS信号量
  6. Web UI回归测试 -- BackstopJS 入门
  7. CodeChef Forest Gathering —— 二分
  8. Codeforces Round #363 (Div. 2) D. Fix a Tree —— 并查集
  9. elasearch基础教程
  10. JSR 303 - Bean Validation 是什么?