How to turn such string into a data grid? (C# .Net)
- by Ole Jak
So I have such string (recived from php server... normal print_r of array)
Array ( [item_number_in_array] => Array ( [id] => id_value [title] title_value_as_string_vith_spaces [content] => content_value_as_string_vith_spaces ) [item_number_in_array]... )
I need any how to represent it as table like this in C#
How to do such thing?