StringHelper PadRight Method CleanCode C# Libraries v1.2.03 API
Pads a string to fit a minimum length by filling (on the right end) with spaces if it is shorter than the given length.

Namespace: CleanCode.Data
Assembly: CleanCode (in CleanCode.dll) Version: 1.2.3.0 (1.2.03)
Syntax

public static string PadRight(
	string value,
	int minimumLength
)

Return Value

String padded on the right to the minimum length.
See Also