to_csv(options = Hash.new)
Returns the row as a CSV String. Headers are not used. Equivalent to:
csv_row.fields.to_csv( options )
# File lib/csv.rb, line 485 def to_csv(options = Hash.new) fields.to_csv(options) end