C#
C#
4
Posts
4
Posters
0
Views
1
Watching
-
Example: In C you write:
int x=1;
cout << "Number:" << setw(20) << x << endl;In C# you write:
int x=1;
Console.WriteLine(String.Format("{0:D}", x).PadLeft(20));Cheer's, Alex Manolescu
-
Example: In C you write:
int x=1;
cout << "Number:" << setw(20) << x << endl;In C# you write:
int x=1;
Console.WriteLine(String.Format("{0:D}", x).PadLeft(20));Cheer's, Alex Manolescu
-
How to get an answer to your question[^] Pay attention to #3. C# as the subject for a post in the C# forum is ridiculous and lazy.
I know the language. I've read a book. - _Madmatt