Microsoft.Isam.Esent.Interop.Vista.JET_THREADSTATS.GetPluralS C# (CSharp) 메소드

GetPluralS() 개인적인 정적인 메소드

Get the plural suffix ('s') for the given number.
private static GetPluralS ( int n ) : string
n int The number.
리턴 string
        private static string GetPluralS(int n)
        {
            return n == 1 ? String.Empty : "s";
        }