Hi, This line: `gstring gs = gstring.Format("FPS: {0}", 12);` will result: FPS: 12 but this one: `gstring gs = gstring.Format("{0} FPS", 12);` will result: 12XXXX
Hi,
This line:
gstring gs = gstring.Format("FPS: {0}", 12);will result:
FPS: 12
but this one:
gstring gs = gstring.Format("{0} FPS", 12);will result:
12XXXX