On Dec 22, 2011, at 4:49 PM, John Croft wrote:
> I have the following code:
Runtime behavior will depend upon the contents of the QUICKEDIT_FILENAME file,
which you don't provide. That makes it rather hard to reproduce. :-)
So, my equivalent code works:
void TestStreamInvokers (TextView
Hello John,
why don't you use a Streamwriter so you can use it again like:
(Streamwriter, Pfad zur Datei, Inhalt an die bestehende anhängen)
using (StreamWriter s = new StreamWriter(PATH_TO_FILE, false))
{
s.Write(YOUR Data TO Write HERE);
}
--
View this message in context:
http://mono-for-andr
I have the following code:
void OpenFile()
{
byte[] content = new byte[1024];
try
{
Stream fis = OpenFileInput(QUICKEDIT_FILENAME);
if (fis.Read(content,0,content.Length) > 0)
{