Cannot find symbol error.
Directions say:
A-2-01)INSTANTIATE a local variable named myFile of class MyCsvFile, passing a single String argument for the CSV filename:
損iecesCompletedByEmployee,v00.txt?br>
I wrote:
MyCsvFile myFile = new MyCsvFile("piecesCompletedByEmployee,v00.txt");
and I get this error:
-Target File: C:\Piecework.java-
C:\Piecework.java:16: cannot find symbol
symbol : class MyCsvFile
location: class Piecework
MyCsvFile myFile = new MyCsvFile("piecesCompletedByEmployee,v00.txt");
^
C:\Piecework.java:16: cannot find symbol
symbol : class MyCsvFile
location: class Piecework
MyCsvFile myFile = new MyCsvFile("piecesCompletedByEmployee,v00.txt");
^
2 errors
-Finished-

