Returns a new string that left-aligns the characters in this string by padding them with spaces on the right, for a specified total length.
A new string that is equivalent to this instance, but left-aligned and padded on the right with as many spaces as needed to create a length of totalWidth. However, if totalWidth is less than the length of this instance, the method returns a reference to the existing instance. If totalWidth is equal to the length of this instance, the method returns a new string that is identical to this instance.
Type Reason ArgumentException totalWidth is less than zero.
A Unicode space is defined as hexadecimal 0x0020.
The string.PadRight(int) method pads the end of the returned string. This means that, when used with right-to-left languages, it pads the left portion of the string.
This method does not modify the value of the current instance. Instead, it returns a new string that is padded with trailing white space so that its total length is totalWidth characters.