The DbfFieldDesc type exposes the following members.
Constructors
| Name | Description | |
|---|---|---|
| DbfFieldDesc |
Creates a DBFFieldDesc struct by reading from raw byte data. The contents of the raw byte data are as they would appear in the
header of a DBF file
|
Methods
| Name | Description | |
|---|---|---|
| Equals | Indicates whether this instance and a specified object are equal. (Inherited from ValueType.) | |
| Finalize | Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection. (Inherited from Object.) | |
| GetHashCode | Returns the hash code for this instance. (Inherited from ValueType.) | |
| GetType | Gets the Type of the current instance. (Inherited from Object.) | |
| MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
| ToString |
Returns a string representation of the DbfFieldDesc
(Overrides ValueType..::.ToString()()().) |
Properties
| Name | Description | |
|---|---|---|
| FieldLength |
The length of the field. Note that in a DBF file each record is a constant length (even if a record is an empty string)
| |
| FieldName |
The name of the field. The maximum length of a field name is 10 characters
| |
| FieldType |
The field type
| |
| RecordOffset |
RecordOffset = the offset of the field in a record.
For Field 0, RecordOffset = 0,
For Field 1, RecordOffset = Length of Field 0,
For Field N, RecordOffset = Length of Field0 to FieldN-1
|