Boa tarde!
Criei um arquivo .txt e gostaria de alterar o tipo e tamanho da fonte, é possível??
using (System.IO.StreamWriter file = new System.IO.StreamWriter(arq, System.IO.File.Exists(arq)))
{
try
{
file.WriteLine("----------------------------------------");
file.WriteLine("Gabi:" + System.DateTime.Now);
}
catch (Exception e)
{
throw new BusinessException(e.Message);
}
finally
{
file.Close();
}
}