|   | CSVReaderdoubleValue Method (ListString, Int32, Double) | 
        
         
            try to retrieve value with index id1; if not successful return val
            
 
    Namespace: 
   Karamba.Utilities
    Assembly:
   KarambaCommon (in KarambaCommon.dll) Version: 1.0.0.0 (1.0.0.0)
 Syntax
Syntaxpublic double doubleValue(
	List<string> line,
	int id1,
	double val
)
Public Function doubleValue ( 
	line As List(Of String),
	id1 As Integer,
	val As Double
) As Double
public:
double doubleValue(
	List<String^>^ line, 
	int id1, 
	double val
)
member doubleValue : 
        line : List<string> * 
        id1 : int * 
        val : float -> float 
Parameters
- line
- Type: System.Collections.GenericListString
 list of strings that contains row items
- id1
- Type: SystemInt32
 index of item to be retrieved
- val
- Type: SystemDouble
 default value if item can not be converted to a double
Return Value
Type: 
Double[Missing <returns> documentation for "M:Karamba.Utilities.CSVReader.doubleValue(System.Collections.Generic.List{System.String},System.Int32,System.Double)"]
 See Also
See Also