Exemplo n.º 1
0
 private void AddPsalmistsForPsalm119(List <CharacterDetail> list)
 {
     list.AddRange(HebrewLetters.Select(h => new CharacterDetail
     {
         CharacterId = $"psalmist ({h})",
         Gender      = CharacterGender.Neuter
     }));
 }
Exemplo n.º 2
0
 public static void IsAHebrewRecognizedChar(char c)
 {
     Assert.True(HebrewLetters.IsHebrewLetter(c) ||
                 c.IsVowel() ||
                 c == HebrewPunctuations.SofPasuq ||
                 c == HebrewPunctuations.Maqaf ||
                 c == ' '
                 , string.Format(@"'{0}' is not a recognized char. Unicode: \u{1:X4}.", c, (int)c));
 }