VB FreeFile() Function in C#?

  • Thread starter Thread starter zacks
  • Start date Start date
Is there an equivalent in C#.NET for the VB.NET FreeFile() function?

Well there's always:

Microsoft.VisualBasic.FreeFile()

.... but it isn't much use because in C# you don't supply a filenumber
to the functions which open a file, so you don't need FreeFile().

Look up "How to: Read Text from a File" in MSDN.
 
Well there's always:

    Microsoft.VisualBasic.FreeFile()

... but it isn't much use because in C# you don't supply a filenumber
to the functions which open a file, so you don't need FreeFile().

Look up "How to: Read Text from a File" in MSDN.

I realized I didn't need it after I posted the request. Thanks anyway.
 
Back
Top