2009/04/02

C# 存成文字檔

// Save file name
public static bool FileSaved(string fileName, string inputString)
{
try
{
System.IO.File.AppendAllText(fileName, inputString);
return true;
}
catch (Exception ex)
{
_errorMessage = ex.ToString();
return false;
}

}

沒有留言: