mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 04:48:53 +00:00
Added parameter checking for Directory.GetDirectories and Directory.GetFiles plugs. Lots of changes to FrodeTest.
37 lines
840 B
C#
37 lines
840 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace FrodeTest.Application
|
|
{
|
|
class net : IConsoleApplication
|
|
{
|
|
#region IConsoleApplication Members
|
|
|
|
public int Execute(string[] args)
|
|
{
|
|
////string[] a = ((string)args).Split(' ');
|
|
//string[] a = new string[] {"enable", "dummy"};
|
|
|
|
////List<string> arguments = new List<string>(
|
|
|
|
//if (a.Contains("enable"))
|
|
// Console.WriteLine("Enabling card(dummy)");
|
|
|
|
return 0;
|
|
}
|
|
|
|
public string CommandName
|
|
{
|
|
get { return "net"; }
|
|
}
|
|
|
|
public string Description
|
|
{
|
|
get { return "Network related commands."; }
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|