15 lines
264 B
C#
15 lines
264 B
C#
namespace UtilityLibraries;
|
|
|
|
public static class StringLibrary
|
|
{
|
|
public static bool StartsWithUpper(this string? str)
|
|
{
|
|
if (string.IsNullOrWhiteSpace(str))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
return char.IsUpper(str[0]);
|
|
}
|
|
}
|