| DelimitedClassBuilderAddField Method (String, Type) | 
 Add a new Delimited field to the current class.
 
    Namespace: 
   FileHelpers.Dynamic
    Assembly:
   FileHelpers (in FileHelpers.dll) Version: 3.2.6
 Syntax
Syntaxpublic DelimitedFieldBuilder AddField(
	string fieldName,
	Type fieldType
)
Public Function AddField ( 
	fieldName As String,
	fieldType As Type
) As DelimitedFieldBuilder
Parameters
- fieldName
- Type: SystemString
 The Name of the field.
- fieldType
- Type: SystemType
 The Type of the field. (For generic of nullable types use the string overload, like "int?")
Return Value
Type: 
DelimitedFieldBuilderThe just created field.
 See Also
See Also