silverlight中MemoryStream内存释放问题?
using (MemoryStream ms = new MemoryStream()) { using (StreamWriter writer = new StreamWriter(ms)) { int count = 1024 * 1024 * 40; char[] str = new char[count]; while (count-- > 0) str[count] = '*'; writer.Write(str); writer.Flush(); } }