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
recordTypeTypeThe type of the record.
isObjectboolA 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
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
RecordType
The type of the record.
public readonly Type RecordType { get; }