C#中没有Redim,所以要用几条语句来写  

   
  VB.NET:  
  Redim   QueryParam(2)  
   
  C#:  
  //比如类型为int  
  int[]   temp   =   new   int[2];  
  Array.Copy(QueryParam,   temp,   QueryParam.Length);  

  QueryParam   =   temp;

http://topic.csdn.net/t/20061029/22/5117952.html

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-11-30
  • 2021-12-08
  • 2021-11-18
  • 2021-12-28
  • 2021-07-27
  • 2021-12-28
猜你喜欢
  • 2022-12-23
  • 2021-12-18
  • 2021-09-24
  • 2021-09-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案