-1

我正在使用夏普开发。我正在使用 C# 制作一个 Windows 窗体应用程序。在这个应用程序中,我使用的是 webbrowser 控件。我希望当我打开网页时,我的网络浏览器应该以编程方式将该网页的源代码复制到文本文件中。我正在使用以下代码来执行此任务

string MSDNpage1 = webBrowser1.Document.Body.InnerText;
cxz.My.MyProject.Computer.FileSystem.WriteAllText("F:\\Assignment.txt", MSDNpage1, true);

但这给出了一个错误

“名称空间 cxz 中不存在类型或名称空间名称“My”(您是否缺少程序集引用?)(CS0234)”

4

1 回答 1

1

My关键字存在于 VB.Net 而不是 C# 中。以下是在 C# 中将文本写入文件的代码:

// Compose a string that consists of three lines.
string lines = "First line.\r\nSecond line.\r\nThird line.";

// Write the string to a file.
System.IO.StreamWriter file = new System.IO.StreamWriter("c:\\test.txt");
file.WriteLine(lines);

file.Close();

参考:代码:写入文本文件 Visual C#

于 2012-09-25T02:56:34.707 回答