Let\'s say I have a web page that currently accepts a single ID value via a url parameter: http://example.com/mypage.aspx?ID=1234
I want to change it to acce
You can instantiate a List from an array.
VB.NET:
Dim lstIDs as new List(of Integer)(ids.split(','))
This is prone to casting errors though if the array contains non-int elements