CSPspEmu.Hle.Formats.Font.GlyphSymbol.ToString C# (CSharp) Method

ToString() public method

public ToString ( ) : string
return string
        public override string ToString()
        {
            return String.Format(
                "PGF.Glyph(GlyphIndex={0}, Char='{1}', Width={2}, Height={3}, Left={4}, Top={5}, Flags={6})",
                GlyphIndex, UnicodeChar, Width, Height, Left, Top, Flags
            );
        }