1
0

Updating with .NET 6.0

This commit is contained in:
2021-11-09 18:37:58 +01:00
parent f2b766e2b0
commit 6c4eb521a7
6 changed files with 27 additions and 18 deletions

View File

@@ -113,7 +113,7 @@ namespace AMWD.Common.EntityFrameworkCore.Extensions
switch (state)
{
case SnakeCaseState.Upper:
bool hasNext = (i + 1 < value.Length);
bool hasNext = i + 1 < value.Length;
if (i > 0 && hasNext)
{
char nextChar = value[i + 1];