Close
jGuru Forums
Posted By: Gyslain_Giguere Posted On: Monday, December 2, 2002 01:23 PM
I'm havin g problems converting a HashSet filled with integers to an array of integers. Could anyone help me? Thanx!
Please use html tags to format code blocks.
Re: Converting a HashSet filled with integers to an array of integers
Posted By: Gautam_Marwaha Posted On: Monday, December 2, 2002 10:04 PM
Integer[] integerArray = (Integer[])hashSet.toArray(new Integer[0]);