Affecto.Pdf.Toolkit.PdfSigner.UppercaseFirst C# (CSharp) Method

UppercaseFirst() private static method

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