mylist contains objects and each object contains (int from, int to, int value, string c)
I need to find the index of item to get string c based on int from and int to.
how to do this in C#?
i.e. in the list there are an item(0, 1, 55, "blue"), if I know 0 and 1, then find "blue".
Thanks
Go to the complete details ...