.NET counterpart for the Scripting.DLL.

sachinpatil1069

New member
Joined
Oct 14, 2011
Messages
1
Programming Experience
3-5
We are converting a VB6 project to VB.net 2005. The VB6 project used Interop.Scripting.Dll reference.

We do not want to use this Interop.Scripting.Dll in our VB.Net project.
Could anyone please help us find the .Net Counterpart of Scripting.Dll so that we do not require to build our .Net project with the old scripting dll reference?

We are using Scripting.FileSystemObject and Scripting.TextStream of Interop.Scripting.Dll. What is the equivalent .net counterpart of these objects in VB.Net 2005.? Which .Net DLL can we use to achieve this? Appreciate all your help in advance.
 
Classes here provide file system functionality: System.IO Namespace ()
There's also My.Computer.FileSystem proxy for common file system operations.
 
Back
Top