Table of Contents

Struct RecordTypeInfo

Namespace
CsvHelper
Assembly
CsvHelper.dll

Type information for a record.

public struct RecordTypeInfo
Inherited Members

Constructors

RecordTypeInfo(Type, bool)

Initializes a new instance using the given recordType and isObject.

public RecordTypeInfo(Type recordType, bool isObject)

Parameters

recordType Type

The type of the record.

isObject bool

A value indicating if the type was an object and GetType() was used over typeof. true if the type is an object, otherwise false.

Properties

HashCode

The hash code for the type.

public readonly int HashCode { get; }

Property Value

int

IsObject

A value indicating if the type was an object and GetType() was used over typeof. true if the type is an object, otherwise false.

public readonly bool IsObject { get; }

Property Value

bool

RecordType

The type of the record.

public readonly Type RecordType { get; }

Property Value

Type