問題描述:
在帶有文字方塊的DetailsView中,需要確保輸入資料始終以大寫字母開頭保存,同時最大限度地提高效能。
最佳化方案:
為了達到最佳效能,建議使用提供的C#程式碼中的FirstCharToUpper()擴充方法。此方法已針對C#的多個版本進行了最佳化,包括:
<code class="language-csharp">public static string FirstCharToUpper(this string input) { return input switch { null => throw new ArgumentNullException(nameof(input)), "" => throw new ArgumentException($"{nameof(input)} cannot be empty", nameof(input)), _ => string.Concat(input[0].ToString().ToUpper(), input.AsSpan(1)) }; }</code>
使用方法:
<code class="language-csharp">string input = "red"; string capitalized = input.FirstCharToUpper();</code>
此方案透過使用ReadonlySpan
注意:
此方法假定只應將首字母大寫。如果要強制將首字母後面的所有字母小寫,請使用包含ToLower但不是To
的答案。
以上是如何在 C# 中高效地將字串的首字母大寫?的詳細內容。更多資訊請關注PHP中文網其他相關文章!