- Jun 16, 2000
 
- 30,213
 
- 12
 
- 81
 
Basically I want to dynamically add rows to a 2D list.
$response_list[@response_list] = \@current_response;
that does not work. current_response is a temporary variable that is changed with the current row. I just need to somehow pass the value...kinda like saying ArrayList myList = new ArrayList(current_value) in C#. There's gotta be a way to do this?
I found something about "arrayvalues", AV datatype online, but for the life of me I can't figure out how to get them to work.
			
			$response_list[@response_list] = \@current_response;
that does not work. current_response is a temporary variable that is changed with the current row. I just need to somehow pass the value...kinda like saying ArrayList myList = new ArrayList(current_value) in C#. There's gotta be a way to do this?
I found something about "arrayvalues", AV datatype online, but for the life of me I can't figure out how to get them to work.
				
		
			