Affecto.Pdf.Toolkit.PdfSigner.UppercaseFirst C# (CSharp) Méthode

UppercaseFirst() private static méthode

private static UppercaseFirst ( string s ) : string
s string
Résultat string
        private static string UppercaseFirst(string s)
        {
            if (string.IsNullOrEmpty(s))
            {
                return string.Empty;
            }
            return char.ToUpper(s[0]) + s.Substring(1).ToLower();
        }
    }