Add extension method to get the cell width of a character

This commit is contained in:
Patrik Svensson 2021-08-28 23:18:41 +02:00 committed by Patrik Svensson
parent 49e8a980a7
commit 48d49d6e18

View File

@ -0,0 +1,18 @@
namespace Spectre.Console
{
/// <summary>
/// Contains extension methods for <see cref="char"/>.
/// </summary>
public static class CharExtensions
{
/// <summary>
/// Gets the cell width of a character.
/// </summary>
/// <param name="character">The character to get the cell width of.</param>
/// <returns>The cell width of the character.</returns>
public static int GetCellWidth(this char character)
{
return Cell.GetCellLength(character);
}
}
}