string s = "0082002100071254 INR 008200 XYZAPQRDEFGHIJK 0.00 Cr 03100";
string[] arraytempline2 = s.split(',');
MessageBox.Show("Length of Line : " + arraytempline2.Length);
After spliting its giving the length as 1
But i want to seperate the above string
And According to me its length should be 6
But i am not getting what is wrong with my code