I'm working on an application that fills in a number of arrays. But being originally a VB6 application, it doesn't use element zero of any of them. This stops things like
my_array.Min
from working properly. I have no plans to tamper with the innards of the application, but it would be very convenient if I could specify a range of array elements in this sort of statement; something like
my_array(1:100).Min
Does such a construction exist, and if so, what is it?
Min? Can you show code that compiles in VB.NET?