Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7004679
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T21:13:47+00:00 2026-05-27T21:13:47+00:00

In my application I am making a custom command line. I am looking for

  • 0

In my application I am making a custom command line. I am looking for the best way to check user entered commands and argument agains the arguments I have defined. Take the following example command (which works if user enter it right and in order)

do>Drawer /X:Time /Y:Current /N:Window NAme /D:Description

Now I want to have a method to does the checking for me:

private string CheckDrawerArgs(string[] args)
{
    var mustExist = new string[4]{"X:", "Y:", "N:", "D:"};

    if(args.Length != mustExist.Length)
    {
        return "Arguments are not completly defined. use 'Drawer /?' for help.";
    }

    var argsAreRight = false;

    var flat = from s1 in args
               from s2 in mustExist
               where s1.StartsWith(s2) 

        //how to check if all elements provided 
        // in args does look 
        // like (Starts with) elements in mustExist

        ;
    if(argsAreRight == false)
    {
        return "Bad arguments";
    }

    //Proceed with rest...
}

So what I am looking for, is to check if required arguments which are provided by user, are in the args also they are not duplicated while the order of them would not effect the checking…

Looking forward for tips!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T21:13:48+00:00Added an answer on May 27, 2026 at 9:13 pm

    Further to Henk’s answer following is tested and working

     var allpresent = args.Length == mustExist.Length && args.All(c =>
                                                         mustExist.Any(e =>
                                                         c.ToString().StartsWith(e)));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am making an application that does some custom image processing. The program will
I am making a custom configuration in my winform application. (It will represent a
So I'm making a custom window template for my WPF application. The trouble I'm
I'm making a custom GUI for my application. Basically my application has multiple 'tabs'.
i'm looking for a customized RBAC solution for an application i am making. The
I'm thinking about making a simple web application to practice custom tags, EL, ...
I am learning C# and am making a custom Payroll application. I have a
I am drawing a custom view in my application which basically takes arguments(XML) as
I am trying to use phpThumb in my application by making a custom autoloader.
I have been developing one application in iPhone and I'm making custom cells for

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.