|
CSVReaderdoubleValue Method (ListString, Int32)
|
retrieve numerical data from line of csv-data. selection_ids contains
indices of items to be converted to numbers. Values non-existent in the table
cause an exception. Decimal separators may be '.' or ','.
Namespace:
Karamba.Utilities
Assembly:
KarambaCommon (in KarambaCommon.dll) Version: 2.2.0.4 (2.2.0.4)
Syntaxpublic double doubleValue(
List<string> line,
int selection_id
)
Public Function doubleValue (
line As List(Of String),
selection_id As Integer
) As Double
public:
double doubleValue(
List<String^>^ line,
int selection_id
)
member doubleValue :
line : List<string> *
selection_id : int -> float
Parameters
- line
- Type: System.Collections.GenericListString
list of strings that contains row items. - selection_id
- Type: SystemInt32
indices of items to be converted to numbers.
Return Value
Type:
Doublevalue of given index.
See Also