<< Click to Display Table of Contents >> Navigation: ThinBASIC Modules > CSV > cCSV class > <cCSV> constructor |
Description
Instantiate a new cCSV class object.
Syntax
CSV = New cCSV
Returns
A new CCSV object previously declared.
Parameters
Name |
Type |
Optional |
Meaning |
Remarks
Restrictions
See also
Examples
uses "CSV"
' Longer version:
' 1/ declaration
dim CSV_Sample1 as cCSV
' 2/ instantiation
CSV_Sample1 = new cCSV
' Short version - declaration & instantiation
dim CSV_Sample2 as new cCSV