AD
Administrator
Syncfusion Team
January 18, 2005 09:06 PM UTC
Hi Ryan,
The reason is that by default, the text encoding is set to UTF8. These initial characters are marking the file as unicode file with UTF8 encoding. Editors such as notepad ignore these initial characters when displaying. If you are wanting to remove this, you need to set the TextEncoding of the Editcontrol to be ASCII.
Calling:
this.editor.TextEncoding = System.Text.Encoding.ASCII;
should take care of this issue.
Regards
Arun