I've a string like this
1,2,3,"a,b,c",4,"5,6"
I want split above string using .Split(',');
Expected:
- 1
- 2
- 3
- a,b,c
- 4
- 5,6
Actual: As usual, it is splitting 4 and 6 also. It is default behaviour. But any other ways where can i get ehat i am expecting?