Compare Single Character From FName

Hi,
I was wondering if there is an cheaper or simpler solution if I want to get a single character from an FName and compare this character with another, than converting the fname first to an FString and then using left/chop/right/etc…

Example:
checking the name of an socket if it’s first character is a “c”. (Socket names are FNames)

Current solution:
SocketList[Idx].ToString().Left(1) == TEXT(“c”)