c#代码,转化为vb.net 代码

privatevoidSaveContents(stringhtml,stringurl){if(string.IsNullOrEmpty(html)){return;}... private void SaveContents(string html, string url)
{
if (string.IsNullOrEmpty(html))
{
return;
}
string path = "";
lock (_locker)
{
path = string.Format("{0}\\{1}.txt", _path, _index++);
}
try
{
using (StreamWriter fs = new StreamWriter(path))
{
fs.Write(html);
}
}
catch (IOException ioe)
{
MessageBox.Show("SaveContents IO" + ioe.Message + " path=" + path);
}

if (ContentsSaved != null)
{
ContentsSaved(path, url);
}
}
展开
 我来答
syht2000
高粉答主

2013-07-05 · 关注我不会让你失望
知道大有可为答主
回答量:3万
采纳率:79%
帮助的人:1.4亿
展开全部
Private Sub SaveContents(html As String, url As String)
If String.IsNullOrEmpty(html) Then
Return
End If
Dim path As String = ""
SyncLock _locker
path = String.Format("{0}\{1}.txt", _path, System.Math.Max(System.Threading.Interlocked.Increment(_index),_index - 1))
End SyncLock
Try
Using fs As New StreamWriter(path)
fs.Write(html)
End Using
Catch ioe As IOException
MessageBox.Show("SaveContents IO" + ioe.Message & " path=" & path)
End Try
RaiseEvent ContentsSaved(path, url)
End Sub
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式