DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
PadLeft() Of String
PadLeft function of string
Console.WriteLine("Preceeded By Ten underscore".PadLeft(10, '_')); // Write ten underscore
Console.WriteLine("Preceeded By 5 comma".PadLeft(10,',')); // Write ten characters with comma
__________Preceeded By Ten underscore ,,,,,,,,,,Preceeded By 5 comma





