Mensajes [5] - Enviado el Lunes 30 de Marzo de 2009 a las 17:38hs
IA TERMINE CASIS TERMINO UN PROGRAMA, NADAMAS QUE ME SURGION UN PROBLEMA, NO CE COMO MODIFICAR, O MANDARLE VALORES AL DOCUMENTO DESDE C#, ......................COMO LE HAGO NECESITO AYUDA?
Mensajes [5] - Enviado el Martes 28 de Abril de 2009 a las 21:52hs
using System;
using System.IO;
static void Main(string[] args)
{
string fileName = "temp.txt";
StreamWriter writer = File.CreateText(fileName);
writer.WriteLine("Este es mi Nuevo archivo creado.");
writer.Close();
}
Mensajes [5] - Enviado el Sabado 09 de Mayo de 2009 a las 16:00hs
using System;
using System.IO;
static void Main(string[] args)
{
string fileName = "temp.txt";
StreamWriter writer = File.CreateText(fileName);
writer.WriteLine("Este es mi Nuevo archivo creado.");
writer.Close();
}