blah blah blah is here! blah blah » Close

1
votes
1 answers

C# TextBox values to x string array

I have a textbox with the following values : 4,5,6,7,8,9,10,11,12,13,15 I want these values to be split into `x` string arrays with `y` values in each array. For example extract into 3 arrays with 4 numbers in each : int x = 3; str ...

Feedback