Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
タイトルが示すように、.wiq ファイルからすべてのテキストを C# の文字列として読み取りたいと考えています。なんとなく可能ですか?通常の StreamReader は .txt に対してのみ機能するためです。
これは私にとってはうまくいきます。
using( System.IO.StreamReader sr = new System.IO.StreamReader(@"C:\temp\queryName.wiq") ) { string allLines = sr.ReadToEnd(); }