Thanks @Anil_G
Yes each line can be of any lenght and your solution Str.Split(Environment.NewLine, 0, 25) is not working.
I tried Str.Split(Environment.Newline.ToCharArray, 25) and the result is an Array containing each new line.
Thanks @Anil_G
Yes each line can be of any lenght and your solution Str.Split(Environment.NewLine, 0, 25) is not working.
I tried Str.Split(Environment.Newline.ToCharArray, 25) and the result is an Array containing each new line.