Hi friends I am new in C# Console Applications, I need to fetch data from Command to Save data with some logic for Ex.
[ In Command Prompt I have to Write \]
i have to write this command
myfile.exe -o(parm) MyTable Xml Filepath
How can i fetch these command on my code?
If I am understanding your question correctly, then what you want to use is the string array of args used as parameter by your Main function.
A basic tutorial here: http://www.dotnetperls.com/main