C
Curious
I have an ArrayList outputList. I only need to get the last item:
int last = outputList.LastIndexOf(null);
ExtremeBucket lastItem =
(ExtremeBucket)outputList[last];
Please confirm if this is the right way. Thanks!
int last = outputList.LastIndexOf(null);
ExtremeBucket lastItem =
(ExtremeBucket)outputList[last];
Please confirm if this is the right way. Thanks!