Just need idea of how to read the following format of text file in c#
example:
A B C
D E F
1 2 3
the target table has Column AD, BE, CF, I need populate 1,2,3 to AD,BE,CF column, only space between characters in the text file.
How to do that in c#?
Thanks