Computer Hope

Software => Computer programming => Topic started by: hibyy on February 09, 2009, 05:21:25 PM

Title: More C# Help...
Post by: hibyy on February 09, 2009, 05:21:25 PM
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();
   }
}
Title: Re: More C# Help...
Post by: BC_Programmer on February 09, 2009, 10:25:46 PM
when I turn it on.

what does this mean? When you turn what on?
Title: Re: More C# Help...
Post by: hibyy on February 10, 2009, 06:59:08 PM
when I activate the dll in another application so I can use it in that application.