NLite.Inflector.Singular C# (CSharp) 메소드

Singular() 공개 정적인 메소드

复数转单数
public static Singular ( string word ) : string
word string
리턴 string
        public static string Singular(string word)
        {
            Guard.NotNullOrEmpty(word, "word");
            return ApplyRules(_singulars, word);
        }