didn't work

  • Thread starter Thread starter liran
  • Start date Start date
L

liran

i allready tried this and its still shows the System.IO.File.File()
is inaccessible due to its protection level error
 
File doesn't have a constructor.

If you're trying to open a file, use

System.IO.File.Create(...) or
System.IO.File.Open(...)

HTH
-vj
 
Back
Top