如何使用 C# 从 *.wiq 文件中读取内容
How to read content from a *.wiq file with C#
正如标题所说,我想在 C# 中将 .wiq 文件中的所有文本作为字符串读取。
有可能吗?因为普通的 StreamReader 只适用于 .txt!
这对我有用。
using( System.IO.StreamReader sr = new System.IO.StreamReader(@"C:\temp\queryName.wiq") )
{
string allLines = sr.ReadToEnd();
}
正如标题所说,我想在 C# 中将 .wiq 文件中的所有文本作为字符串读取。 有可能吗?因为普通的 StreamReader 只适用于 .txt!
这对我有用。
using( System.IO.StreamReader sr = new System.IO.StreamReader(@"C:\temp\queryName.wiq") )
{
string allLines = sr.ReadToEnd();
}