CheckArgs() public method

public CheckArgs ( string args ) : bool
args string
return bool
Example #1
0
        static void Main(string[] args)
        {
            FtpSyncWorker lWorker = new FtpSyncWorker();

            if (lWorker.CheckArgs(args))
            {
                lWorker.Sync();
            }
        }
Example #2
0
		static void Main(string[] args)
		{
			FtpSyncWorker lWorker = new FtpSyncWorker();

			if (lWorker.CheckArgs(args))
			{
				lWorker.Sync();
			}
		}