1.怎么解决在C中的#define的预编译
比如在C#想将DataType全都替换成Int
using DataType=System.Int32;
将上面一句放在开头就行了
2.在字符串中声明一个字符串数组
int count=5; string[] stringArray=new string[count];
这样就行了
时间: 2024-12-21 18:33:50
1.怎么解决在C中的#define的预编译
比如在C#想将DataType全都替换成Int
using DataType=System.Int32;
将上面一句放在开头就行了
2.在字符串中声明一个字符串数组
int count=5; string[] stringArray=new string[count];
这样就行了