Hi, I'd like to have tabs in my console app, but instead of using \t, I'd like to use an equivalent of the C++ setw() method in C#. Any ideas of what I might use?
And another thing, in C++, you would declare more than one array with indexes like this:
int x[10], y[10], z[10];
Is there a shorter way than writing like this in C# :
int[] x = new int[10];
int[] y = new int[10];
int[] z = new int[10];
Thanx for the help, if someone knows.
Edit: Oh, damnit, wrong forum! Can a mod move it to the C# forum?