0

Is there a way to check if a script is bicameral, or with two sets of symbols (like upper- and lower-case) for each letter in C#? An example of a bicameral script is Roman and Greek.

Veve
  • 6,643
  • 5
  • 39
  • 58
Noble_Bright_Life
  • 569
  • 3
  • 9
  • 16

1 Answers1

0

Unfortunately, there are no scripts in .Net BCL (or in the Unicode standard either). You can check if a specific character is its own uppercase/lowercase version in a specific TextInfo (but beware of edge cases like the German eszett), but they aren't grouped into scripts.

Alexey
  • 1,354
  • 13
  • 30