ABB.Swum.SamuraiIdSplitter.SplitSameCase C# (CSharp) Метод

SplitSameCase() приватный Метод

Splits a word into subwords. The word should be either (1) all lowercase, (2) all uppercase, or (3) a single uppercase letter followed by lowercase letters
private SplitSameCase ( string word ) : string[]
word string The word to split.
Результат string[]
        private string[] SplitSameCase(string word)
        {
            return SplitSameCase(word, Score(word));
        }

Same methods

SamuraiIdSplitter::SplitSameCase ( string word, double noSplitScore ) : string[]