Files
libremetaverse/libsecondlife-cs/examples/TestTool/Program.cs
lonecoder 3fb3c976c8 Initial Commit of TestTool
git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@615 52acb1d6-8a22-11de-b505-999d5b087335
2006-11-22 00:09:31 +00:00

26 lines
638 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace libsecondlife.TestTool
{
class Program
{
static void Main(string[] args)
{
if (args.Length < 3)
{
Console.WriteLine("Usage: TestTool.exe firstname lastname password [Master Name]");
return;
}
string masterName = String.Empty;
for (int ct = 3; ct < args.Length;ct++)
masterName = masterName + args[ct] + " ";
TestTool testTool = new TestTool(args[0], args[1], args[2], masterName.TrimEnd());
testTool.Run();
}
}
}