I found this on stackoverflow as to how I generate the english/latin alphabet.
I would like the same as this but for the Cyrillic and Arabic alphabet - anyone know how I might create such with c#?
|
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
You could enumerate through the code points in the applicable Unicode block. For example, Cyrillic is defined in U+0400–U+04FF, so you could use:
|
|||
|
|