In python i’m creating .an file using
commandStr="dpan.exe -np -Lwork_%s.lib -Owork_%s.lib %s %s.an" %( option1, option2, Sourcefile, Destination file)
os.system( commandStr )
This will create the .an file (Destination file) from Sourcefile.
Now i’m converting this line of code from Python to C#
So how do i do this in C#. How to run the commandStr in C#
Please help me to do this.
You could use the Process.Start method: