私はこれらすべてにかなり慣れていませんが、この作業を行うのにかなり近づいているように感じます。少し助けが必要です! 別のアプリケーションで開いているファイルの最後の行を読み取って返すことができる DLL を作成したいと考えています。これは私のコードがどのように見えるかです。while ステートメントに何を入れればよいかわかりません。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;
namespace SharedAccess
{
public class ReadShare {
static void Main(string path) {
FileStream stream = File.Open(path, FileMode.Open, FileAccess.Read, FileShare.ReadWrite);
StreamReader reader = new StreamReader(stream);
while (!reader.EndOfStream)
{
//What goes here?
}
}
}
}