Table of Contents

Class LetterAndDigitCharService

Namespace
SunamoChar.Services
Assembly
SunamoChar.dll

Service for handling letters and digits

public class LetterAndDigitCharService
Inheritance
LetterAndDigitCharService
Inherited Members
Extension Methods

Properties

AllChars

All characters

public List<char>? AllChars { get; set; }

Property Value

List<char>

AllCharsWithoutSpecial

All characters without special characters

public List<char>? AllCharsWithoutSpecial { get; set; }

Property Value

List<char>

LowerChars

Lowercase letter characters (a-z)

public List<char> LowerChars { get; }

Property Value

List<char>

NumericChars

Numeric characters (0-9)

public List<char> NumericChars { get; }

Property Value

List<char>

TabCharacter

Tab character

public char TabCharacter { get; }

Property Value

char

UpperChars

Uppercase letter characters (A-Z)

public List<char> UpperChars { get; }

Property Value

List<char>

Methods

InitializeAllChars()

Initializes all character lists

public void InitializeAllChars()