Skip to content

Commit 6343529

Browse files
committed
#1942 - AssignedByValParameter new QuickFix
CapitalizeFirstLetter
1 parent 85ac9d8 commit 6343529

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

RetailCoder.VBE/Common/StringExtensions.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ public static string CapitalizeFirstLetter(this string input)
2121
{
2222
return string.Empty;
2323
}
24+
return input.Captialize().Substring(0, 1) + input.Substring(1);
2425
}
2526
}
2627
}

0 commit comments

Comments
 (0)