列表值我有特定的類的列表。 在此列表中,包含職位類別。 這一立場類包括X和Y座標。 我當前座標,並在列表中的座標。 我要計算在列表中的每個項目的距離,找到哪個項目有最小距離。 這裏是我的代碼:尋找最小。在vb.net
For Each item As ITEMX In xHandle.ItemList
Dim CurrX As Integer = txt_TrainX.Text
Dim CurrY As Integer = txt_TrainY.Text
Dim NextX As Integer = item.Position.x
Dim NextY As Integer = item.Position.y
Dim distance As Integer = DistanceBetween(CurrX, CurrY, NextX, NextY)
Next
所以距離是我的座標與項目之間的距離。 我計算它在列表中的每個項目,但如何找到最小呢?
謝謝。
感謝asnwers.I認爲他們會幫助。 – sarkolata