| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 | namespace NLangDetect.Core.Extensions{    public enum UnicodeBlock    {        BasicLatin,        Latin1Supplement,        LatinExtendedA,        LatinExtendedB,        IpaExtensions,        SpacingModifierLetters,        CombiningDiacriticalMarks,        Greek,        Cyrillic,        CyrillicSupplementary,        Armenian,        Hebrew,        Arabic,        Syriac,        Thaana,        Devanagari,        Bengali,        Gurmukhi,        Gujarati,        Oriya,        Tamil,        Telugu,        Kannada,        Malayalam,        Sinhala,        Thai,        Lao,        Tibetan,        Myanmar,        Georgian,        HangulJamo,        Ethiopic,        Cherokee,        UnifiedCanadianAboriginalSyllabics,        Ogham,        Runic,        Tagalog,        Hanunoo,        Buhid,        Tagbanwa,        Khmer,        Mongolian,        Limbu,        TaiLe,        KhmerSymbols,        PhoneticExtensions,        LatinExtendedAdditional,        GreekExtended,        GeneralPunctuation,        SuperscriptsAndSubscripts,        CurrencySymbols,        CombiningMarksForSymbols,        LetterlikeSymbols,        NumberForms,        Arrows,        MathematicalOperators,        MiscellaneousTechnical,        ControlPictures,        OpticalCharacterRecognition,        EnclosedAlphanumerics,        BoxDrawing,        BlockElements,        GeometricShapes,        MiscellaneousSymbols,        Dingbats,        MiscellaneousMathematicalSymbolsA,        SupplementalArrowsA,        BraillePatterns,        SupplementalArrowsB,        MiscellaneousMathematicalSymbolsB,        SupplementalMathematicalOperators,        MiscellaneousSymbolsAndArrows,        CjkRadicalsSupplement,        KangxiRadicals,        IdeographicDescriptionCharacters,        CjkSymbolsAndPunctuation,        Hiragana,        Katakana,        Bopomofo,        HangulCompatibilityJamo,        Kanbun,        BopomofoExtended,        KatakanaPhoneticExtensions,        EnclosedCjkLettersAndMonths,        CjkCompatibility,        CjkUnifiedIdeographsExtensionA,        YijingHexagramSymbols,        CjkUnifiedIdeographs,        YiSyllables,        YiRadicals,        HangulSyllables,        HighSurrogates,        HighPrivateUseSurrogates,        LowSurrogates,        PrivateUseArea,        CjkCompatibilityIdeographs,        AlphabeticPresentationForms,        ArabicPresentationFormsA,        VariationSelectors,        CombiningHalfMarks,        CjkCompatibilityForms,        SmallFormVariants,        ArabicPresentationFormsB,        HalfwidthAndFullwidthForms,        Specials,        LinearBSyllabary,        LinearBIdeograms,        AegeanNumbers,        OldItalic,        Gothic,        Ugaritic,        Deseret,        Shavian,        Osmanya,        CypriotSyllabary,        ByzantineMusicalSymbols,        MusicalSymbols,        TaiXuanJingSymbols,        MathematicalAlphanumericSymbols,        CjkUnifiedIdeographsExtensionB,        CjkCompatibilityIdeographsSupplement,        Tags,        VariationSelectorsSupplement,        SupplementaryPrivateUseAreaA,        SupplementaryPrivateUseAreaB,    }}
 |