Encog.Util.CSV.ReadCSV.GetLong C# (CSharp) Method

GetLong() private method

private GetLong ( int col ) : long
col int
return long
        internal long GetLong(int col)
        {
            String str = Get(col);
            try
            {
                return long.Parse(str);
            }
            catch (FormatException)
            {
                return 0;
            }
        }