0
Answer

How cam run a .exe file(compiled from .cs file) in cmd windows?

Ask a question
black

black

16y
1.5k
1

if i have a file .exe  (compiled from .cs file with 2 function inside fun1(string str1,string str2),fun2(int a,string str)).How can i run that file from a cmd windowswith the name of function and parametters are provided .

example:

fun1(string str1,string str2)

{

      //something

}

fun2(int a,string str)

{

   //something

}