FieldInfo Constructor

Vajhoej Record

Collapse imageExpand ImageCollapseAll imageExpandAll imageDropDown imageDropDownHover imageCopy imageCopyHover image
Create instance of FieldInfo with all necessary properties.

Namespace: Vajhoej.Record
Assembly: Record (in Record.dll) Version: 0.0.0.0

Syntax

         
 C#  Visual Basic  Visual C++ 
public FieldInfo(
	FieldType structType,
	int length,
	int decimals,
	string encoding,
	byte zone,
	int prefixLength,
	Type classType,
	FieldInfo field,
	IDictionary<int, SubClassAndPad> selects,
	bool selectPad,
	int elements
)
Public Sub New ( _
	structType As FieldType, _
	length As Integer, _
	decimals As Integer, _
	encoding As String, _
	zone As Byte, _
	prefixLength As Integer, _
	classType As Type, _
	field As FieldInfo, _
	selects As IDictionary(Of Integer, SubClassAndPad), _
	selectPad As Boolean, _
	elements As Integer _
)
public:
FieldInfo(
	FieldType structType, 
	int length, 
	int decimals, 
	String^ encoding, 
	unsigned char zone, 
	int prefixLength, 
	Type^ classType, 
	FieldInfo^ field, 
	IDictionary<int, SubClassAndPad^>^ selects, 
	bool selectPad, 
	int elements
)

Parameters

structType
FieldType
native struct type.
length
Int32
length of fixed length string.
decimals
Int32
Number of decimals.
encoding
String
Encoding of string.
zone
Byte
Zone of zoned BCD.
prefixLength
Int32
Prefix length of variable length string
classType
Type
.NET class type.
field
FieldInfo
Corresponding reflection object.
selects
IDictionary<(Of <(<'Int32, SubClassAndPad>)>)>
Sub class selections.
selectPad
Boolean
Pad sub classes to fixed length.
elements
Int32
Number of elements.

See Also