|
Answer» Hello I need some more help... xD
I Figured out how to make a .dll from a C# program but I want it to edit another file when I turn it on.
The PROBLEM is I don't know what to type in the code to do that...
This is the code...
USING System;
public class EditMe { public static VOID MAIN() { string editthisstring = "Hello"; Console.WriteLine(editthisstring); // Part when you use the dll... Console.ReadLine(); // I want it to say "Good Bye!" when the DLL edits it. Console.WriteLine(editthisstring); Console.ReadLine(); } }Quote from: hibyy on February 09, 2009, 05:21:25 PM when I turn it on.
what does this mean? When you turn what on?when I activate the dll in another application so I can use it in that application.
|