Improved: Use char.ToUpper() instead of ToString().ToUpper()...

This commit is contained in:
ivandrofly 2014-06-10 14:40:33 +01:00
parent 61ebdd92ea
commit b8dfea54c4

View File

@ -2662,7 +2662,7 @@ namespace Nikse.SubtitleEdit.Forms
{ {
var st = new StripableText(p.Text); var st = new StripableText(p.Text);
if (st.StrippedText.Length > 0 && st.StrippedText[0].ToString() != st.StrippedText[0].ToString().ToUpper()) if (st.StrippedText.Length > 0 && st.StrippedText[0].ToString() != st.StrippedText[0].ToString().ToUpper())
p.Text = st.Pre + st.StrippedText[0].ToString().ToUpper() + st.StrippedText.Remove(0, 1) + st.Post; p.Text = st.Pre + char.ToUpper(st.StrippedText[0]) + st.StrippedText.Substring(1) + st.Post;
} }
} }