Click or drag to resize

CsvTransformerTFromBytesCore Method (Byte, Int32, Int32, Encoding)

Transforms the content of a byte array into an instance of type T.

Namespace:  Enkoni.Framework.Serialization
Assembly:  Enkoni.Framework.Serialization (in Enkoni.Framework.Serialization.dll) Version: 1.3.0.1
Syntax
protected override T FromBytesCore(
	byte[] bytes,
	int offset,
	int length,
	Encoding encoding
)

Parameters

bytes
Type: SystemByte
The byte array whose content must be transformed.
offset
Type: SystemInt32
The offset from which to start reading bytes.
length
Type: SystemInt32
The number of bytes that must be read from the array.
encoding
Type: System.TextEncoding
The encoding that must be used to transform the bytes.

Return Value

Type: T
The transformed instance.
See Also