gstring
gstring copied to clipboard
GC Free string for C#
Test.unity StringTest OutsideString1 = XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
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
In win10 unity3d 5.x ``` C# void test() gstring file = "C:/documents/vexe/test.txt"; Debug.Log(file.IndexOf("://")); // the value is 1 --file.IndexOf("://")==1 end ` ```
Hi! I found an issue with gstring.Format and i can't format the way i want `void Update() { using (gstring.Block()) { timeElapsed += Time.deltaTime; ts = TimeSpan.FromSeconds(timeElapsed); myText.text = gstring.Format("{0:D2}:{1:D2}:{2:000}",...