ShadowKnightMK4 / OdinSearch

Search thru local computer files and feed matching output to a class that consumes it.
MIT License
1 stars 0 forks source link

Consider replacing arghandling code. #31

Open ShadowKnightMK4 opened 3 weeks ago

ShadowKnightMK4 commented 3 weeks ago

Rather than hardcode the arguments as it has (ArgumentHandling.cs), consider making a more data driven approuch like this

dictionary<string/int/ect/const, list> arg_db;

the key is the argument we're working with - such as /filename or /fullname.

The value is a list of strings that match setting that flag.