标签:
1.怎么解决在C中的#define的预编译
比如在C#想将DataType全都替换成Int
using DataType=System.Int32;
将上面一句放在开头就行了
2.在字符串中声明一个字符串数组
int count=5; string[] stringArray=new string[count];
这样就行了
在C#中的各种应用
原文地址:http://www.cnblogs.com/chenbuer/p/4185932.html