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
AllCharsWithoutSpecial
All characters without special characters
public List<char>? AllCharsWithoutSpecial { get; set; }
Property Value
LowerChars
Lowercase letter characters (a-z)
public List<char> LowerChars { get; }
Property Value
NumericChars
Numeric characters (0-9)
public List<char> NumericChars { get; }
Property Value
TabCharacter
Tab character
public char TabCharacter { get; }
Property Value
UpperChars
Uppercase letter characters (A-Z)
public List<char> UpperChars { get; }
Property Value
Methods
InitializeAllChars()
Initializes all character lists
public void InitializeAllChars()