CArchive.Write is a function in the C++ programming language that is used to write binary data to a CArchive object. It takes in a pointer to the data to be written, along with the number of bytes to be written. This function is commonly used in serialization to write data from objects to a file or another data source. The data written by CArchive.Write can later be read using the CArchive.Read function.
C++ (Cpp) CArchive::Write - 30 examples found. These are the top rated real world C++ (Cpp) examples of CArchive::Write extracted from open source projects. You can rate examples to help us improve the quality of examples.