So right now I'm trying to print out a Console.WriteLine with elements all have different data types (string, int, and decimal).
Console.WriteLine("Name, Credit Card Number, Balance");
string[] Name = { "Ana", "Slova", "Nova" };
int[] Credit = { 123242, 492913, 443112 };
decimal[] Balance = { 12.34m, 332.33m, -3.33m };
Console.WriteLine("{0}, {0}, {0}", Name, Credit, Balance);
Problem is they're all coming out as system string. I'm still learning C#, so any hints would be appreciated.