欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

vbs的sort排序

 更新時(shí)間:2008年08月01日 23:29:28   作者:  
vbs+sort排序效果代碼
Function fSortArray(aSortThisArray)
Dim oArrayList, iElement
Set oArrayList = CreateObject( "System.Collections.ArrayList" )
For iElement = 0 To UBound(aSortThisArray)
oArrayList.Add aSortThisArray(iElement)
Next
oArrayList.Sort
set fSortArray = oArrayList
End Function

myarray=Array(50,20,30)
MsgBox myarray(0)
MsgBox fSortArray(myarray)(0)

'CreateObject( "System.Collections.ArrayList" )調(diào)用了mscoree.dll,是.NET Framework相關(guān)組件。

相關(guān)文章

最新評(píng)論