Parses the specified text to the value of the specified data object.
            
Namespace: Dapfor.Net.FormatsAssembly: Dapfor.Net (in Dapfor.Net.dll) Version: 2.10.3.24917 (2.10.3.24917)
Syntax
| C# | 
|---|
public void Parse(
	string text,
	IDataField dataField
)  | 
| Visual Basic | 
|---|
Public Sub Parse ( 
	text As String,
	dataField As IDataField
)  | 
| Visual C++ | 
|---|
public:
virtual void Parse(
	String^ text, 
	IDataField^ dataField
) sealed  | 
| F# | 
|---|
abstract Parse : 
        text : string * 
        dataField : IDataField -> unit 
override Parse : 
        text : string * 
        dataField : IDataField -> unit  | 
Parameters
- text
 - Type: System..::..String
The text to be parsed. 
- dataField
 - Type: Dapfor.Net.Data..::..IDataField
The data field. 
Implements
IFormat..::..Parse(String, IDataField)
See Also