If I have a textBox1 that contains 2 lines of text.
What I want to do is to put each line into an Array. So I want to check the textBox1
and read in all consisting lines into an Array.
(1 line will reprsent 1 memoryplace in the Array)
How is this possible. Will it work to do this ?
array<System::string ^> ^ Lines get(textBox1->Lines);