AcManager.Tools.Objects.FontObject.CharToId C# (CSharp) Method

CharToId() public static method

public static CharToId ( char c ) : int
c char
return int
        public static int CharToId(char c) => c < FirstChar || c > LastChar ? 0 : c - FirstChar;