C Shap窗口程序文本读取封装成一个方法
时间: 2024-05-03 19:22:43 浏览: 93
一种实用的读c程序方法
以下是一个C#窗口程序文本读取的封装方法示例:
```csharp
public string ReadTextFromFile(string filePath)
{
string text = "";
try
{
using (StreamReader sr = new StreamReader(filePath))
{
text = sr.ReadToEnd();
}
}
catch (Exception ex)
{
MessageBox.Show("读取文件失败:" + ex.Message);
}
return text;
}
```
这个方法接受一个文件路径作为参数,返回文件中的文本内容。如果读取文件失败,会弹出一个消息框提示用户。
使用方法示例:
```csharp
string filePath = "C:/example.txt";
string text = ReadTextFromFile(filePath);
MessageBox.Show(text);
```
阅读全文