Microsoft.Isam.Esent.Interop.Vista.JET_THREADSTATS.GetPluralS C# (CSharp) Method

GetPluralS() private static method

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