namespace Spectre.Console;
///
/// Contains extension methods for .
///
public static partial class CharExtensions
{
///
/// Gets the cell width of a character.
///
/// The character to get the cell width of.
/// The cell width of the character.
public static int GetCellWidth(this char character)
{
return Cell.GetCellLength(character);
}
}