Share via


TextIo.writeExp(Object[]) Method

Definition

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.

Applies to