Lukezzz 0 Posting Whiz in Training

I am passing 2 Strings^ from Form2 to Form3 when I open Form3 so I can get these in Form3 in the code below.
This works fine.

//In Form2, I pass along 2 String^ to Form3

//Passing along n1 and n2
Form3 ^form3 = gcnew Form3
(			
	Convert::ToString(n1),
	Convert::ToString(n2)			 
);
form3->Show();


//In Form3 I will get these 2 String^ like this.
Form3( String^ n1, String^ n2 )
{
	InitializeComponent();
	//
	//TODO: Add the constructor code here
	//
}

What I wonder is if I can pass this List(PassThisList) from Form2 to Form3 also in any simular way ?

List<double>^ PassThisList = gcnew List<double>;

//Adding some values to the List
PassThisList->Add(0);
PassThisList->Add(1);
PassThisList->Add(2);