B
Brane Brodnik
Following code returns compile time error: "Cannot implicitly convert type
'System.IO.BinaryWriter' to 'System.IDisposable'" in CompactFramework. In
full Framework it works fine. Is there an explanation for that?
MemoryStream m = new MemoryStream();
using (BinaryWriter w = new BinaryWriter(m))
{
}
Thanks,
Brane Brodnik
'System.IO.BinaryWriter' to 'System.IDisposable'" in CompactFramework. In
full Framework it works fine. Is there an explanation for that?
MemoryStream m = new MemoryStream();
using (BinaryWriter w = new BinaryWriter(m))
{
}
Thanks,
Brane Brodnik