I have a sort of column display, but the end two column\'s seem to not be aligning correctly. This is the code I have at the moment:
Console.WriteLine(\"Cust
Do some padding, i.e.
public static void prn(string fname, string fvalue) { string outstring = fname.PadRight(20) +"\t\t " + fvalue; Console.WriteLine(outstring); }
This worked well, at least for me.