恩电——只有热恋般的激情和宗教般的执着才能成就一份事业
博客园
首页
社区
新随笔
联系
订阅
管理
随笔-36 评论-609 文章-0 trackbacks-14
2005年2月16日
Save or append text to a file (c#)
偶然看到
rippleyong [涟漪勇]
Post了一个
VB.NET版的Save or append text to a file
,于是一阵手痒,便有了这C#版的Method:
public
static
bool
SaveTextToFile(
string
filepath,
string
text,
bool
append)
{
using
(System.IO.StreamWriter sw
=
new
System.IO.StreamWriter(filepath,append))
{
try
{
sw.Write(text);
return
true
;
}
catch
{
return
false
;
}
}
}
posted @ 2005-02-16 16:41 恩电 阅读(1308) 评论(0)
编辑