CommaIo.read 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.
Reads the next full record from the Io object.
public:
override cli::array <System::Object ^> ^ read();
public override object[] read ();
override this.read : unit -> obj[]
Public Overrides Function read () As Object()
Returns
The next full record from the Io object.
Remarks
The definition of the next full record is controlled by the inFieldDelimiter, inRecordDelimiter, and inRecordLength properties. The record is returned as a container. Each entry in the container equals one field in the record. Each specialized Io class has default settings for the inFieldDelimiter, inRecordDelimiter, and inRecordLength properties to enable input and output in the most common formats. However, you might have to adjust these settings to support the desired format.