本文整理匯總了VB.NET中System.Collections.SortedList.SetByIndex方法的典型用法代碼示例。如果您正苦於以下問題:VB.NET SortedList.SetByIndex方法的具體用法?VB.NET SortedList.SetByIndex怎麽用?VB.NET SortedList.SetByIndex使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類System.Collections.SortedList
的用法示例。
在下文中一共展示了SortedList.SetByIndex方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的VB.NET代碼示例。
示例1: Main
' 導入命名空間
Imports System.Collections
Public Class SamplesSortedList
Public Shared Sub Main()
' Creates and initializes a new SortedList.
Dim mySL As New SortedList()
mySL.Add(2, "two")
mySL.Add(3, "three")
mySL.Add(1, "one")
mySL.Add(0, "zero")
mySL.Add(4, "four")
' Displays the values of the SortedList.
Console.WriteLine("The SortedList contains the following" & _
"values:")
PrintIndexAndKeysAndValues(mySL)
' Replaces the values at index 3 and index 4.
mySL.SetByIndex(3, "III")
mySL.SetByIndex(4, "IV")
' Displays the updated values of the SortedList.
Console.WriteLine("After replacing the value at index 3 and index 4,")
PrintIndexAndKeysAndValues(mySL)
End Sub
Public Shared Sub PrintIndexAndKeysAndValues(myList As SortedList)
Console.WriteLine(ControlChars.Tab & "-INDEX-" & ControlChars.Tab & _
"-KEY-" & ControlChars.Tab & "-VALUE-")
Dim i As Integer
For i = 0 To myList.Count - 1
Console.WriteLine(ControlChars.Tab & "[{0}]:" & ControlChars.Tab & _
"{1}" & ControlChars.Tab & "{2}", i, myList.GetKey(i), _
myList.GetByIndex(i))
Next i
Console.WriteLine()
End Sub
End Class
輸出:
The SortedList contains the following values: -INDEX- -KEY- -VALUE- [0]: 0 zero [1]: 1 one [2]: 2 two [3]: 3 three [4]: 4 four After replacing the value at index 3 and index 4, -INDEX- -KEY- -VALUE- [0]: 0 zero [1]: 1 one [2]: 2 two [3]: 3 III [4]: 4 IV