Argoticを memorystreamに書き込み、それを文字列として別の関数に返したいと考えています。これは私が書いたものです:
Stream st = new MemoryStream();
Feed.Save(st); //argotic Save method has the ability to write into Stream
StreamReader sr = new StreamReader(st);
return sr.ReadToEnd();
しかし、st.lengthは正しい長さを示していますが、文字がありませんが、空の文字列しか得られません:-?
どうすればこの問題を解決できますか?
よろしく。