Padding constructor (1 of 2)
Initializes a new instance of the Padding
class with the same padding value for both left and right sides.
public Padding(int all)
parameter | description |
---|---|
all | The padding value to apply to both left and right sides. |
See Also
- class Padding
- namespace Kestrun.Logging.Utils.Console
Padding constructor (2 of 2)
Initializes a new instance of the Padding
class with specified right and left padding values.
public Padding(int right, int left)
parameter | description |
---|---|
right | The padding value for the right side. |
left | The padding value for the left side. |
See Also
- class Padding
- namespace Kestrun.Logging.Utils.Console