GSF.StringExtensions.IsSingular C# (CSharp) 메소드

IsSingular() 공개 정적인 메소드

Determines whether the specified word is singular.
public static IsSingular ( this value ) : bool
value this The word to be analyzed.
리턴 bool
        public static bool IsSingular(this string value)
        {
            if (string.IsNullOrEmpty(value))
                return false;
#if MONO
            return !value.IsPlural();
#else
            return s_pluralizationService.IsSingular(value);
#endif
        }