本文介绍了清除字符串数组的最佳方法是什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

清除字符串数组的最佳方法是什么?

What is the best way to clear an array of strings?

推荐答案

错误的方式:

myArray = Nothing

仅将指向数组的变量设置为空,但实际上不清除数组.指向同一数组的任何其他变量仍将保留该值.因此,有必要清除数组.

Only sets the variable pointing to the array to nothing, but doesn't actually clear the array. Any other variables pointing to the same array will still hold the value. Therefore it is necessary to clear out the array.

正确的方式

Array.Clear(myArray,0,myArray.Length)

这篇关于清除字符串数组的最佳方法是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-11 02:52