-
How to obtain commandline args from |
Beta Was this translation helpful? Give feedback.
Answered by
EngincanV
Jan 21, 2022
Replies: 1 comment 1 reply
-
You can use the using System;
string[] args = Environment.GetCommandLineArgs(); |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
RayMMond
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can use the
Environment.GetCommandLineArgs()
method: