Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
4answers
2k views

Why does MemoryStream.GetBuffer() always throw?

The following code will always throw UnuthorizedAccessException (MemoryStream's internal buffer cannot be accessed.) byte[] buf1 = { 2, 3, 5, 7, 11 }; var ms = new MemoryStream(buf1); byte[] buf2 = ...
1
vote
2answers
839 views

What if I don't call ReleaseBuffer after GetBuffer?

From http://stackoverflow.com/questions/559483/cstring-to-char, ReleaseBuffer() must be used after GetBuffer(). But why? What will happen if I don't use ReleaseBuffer after GetBuffer()? Can somebody ...
1
vote
1answer
179 views

Getting bad content in trailing section exception, when parsing xml produced by C# client in a GAEJ app

I am trying to POST a potentially large chunk of xml from a C# client to a GAEJ app, and then parse it into a DOM document. I've managed to get the documentbuilder to parse the xml by parsing the ...