I have a c# dll defined like this:
namespace SMSNotificationDll
{
public class smsSender
{
public void SendMessage(String number, String mess
Why don't you just create a simple console application which refers to the DLL as a class library?
namespace SMSNotificationDll
{
public class SmsSenderProgram
{
public static void Main(string[] args)
{
// TODO: Argument validation
new smsSender().SendMessage(args[0], args[1]);
}
}
}
Btw, I'd rename smsSender
to something like SmsSender
.