How to turn such string into a data grid? (C# .Net)
        Posted  
        
            by Ole Jak
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Ole Jak
        
        
        
        Published on 2010-05-03T09:53:05Z
        Indexed on 
            2010/05/03
            11:08 UTC
        
        
        Read the original article
        Hit count: 278
        
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?
© Stack Overflow or respective owner