在 PHP 中,我们知道使用此代码创建关联数组
$variable = array('0001'=>'value1', '0010'=>'value2');
并使用此代码打印所有键和值
foreach($variable as $key1 => $val1)
foreach($val1 as $key2 => $val2)
echo ("$key2 => $val2 <br />")
问题是如何在 vb.net 中执行此操作?
据我所知,使用这个在 vb.net 中制作关联数组:
Dim var As New Collection
var.Add("value1", "0001")
var.Add("value2", "0010")
如何像 PHP 中的 foreach 一样在 vb.net 中打印值和键?谢谢