how to?
Managed C++/CLI
1
Posts
1
Posters
1
Views
1
Watching
-
this line of code IFormatter formatter = new BinaryFormatter();Stream stream = new FileStream("MyFile.bin", FileMode.Create, FileAccess.Write, FileShare.None);formatter.Serialize(stream, obj);stream.Close(); alwas write data at the end of file or not ? i mean there are alot of Objects . where it write in the file? this line of code object obj = formatter.Deserialize(stream); alwas read data from the begining of file or not ? i mean there are alot of Objects. where it read from the file? r00d0034@yahoo.com