I am using C# in an ASP.NET Web MVC5 application.
When creating an AcmText object with a string that begins with a space, the AcmText.Text contains an additional space at the beginning.
Ex.
Code: C#
string line = " This line starts with a single space.";
AcmText lineText = new AcmText( line );
bool linesAreEqual = lineText.Text == line;
//linesAreEqual is false because now lineText.Text has two spaces at the beginning.