TextIo.writeExp(Object[]) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Writes the contents of a container to a file represented by a TextIO object.
public:
override bool writeExp(cli::array <System::Object ^> ^ _data);
public override bool writeExp (object[] _data);
override this.writeExp : obj[] -> bool
Public Overrides Function writeExp (_data As Object()) As Boolean
Parameters
- _data
- Object[]
The container that has data to write to the file.
Returns
true if the write operation succeeds; otherwise, false.
Remarks
If the write operation fails, the TextIo.status Method can be used to ascertain the cause. Entries in the container are separated by the delimiter set by the outFieldDelimiter method. Containers are separated by the delimiter set by the outRecordDelimiter method.