How to obtain cross join for two datatables in C#
dataTable1 - 
          col1 
           a    
           b    
dataTable2 - 
          col2
           c
           d
I want output as follows:
dataResult - col1 col2 
               a    c 
               a    d   
               b    c   
               b    d 
How this can be achieved?
                        
Something like this should do it: