G
Guest
Hi,
I have a very serious issue at hand. I have created a small C# Console App
(Csd.exe) that collects a list of files as its argument and generates their
Md5 sets.
This application is used by other applications in my dept, which simply call
this Csd.exe app and passing a list of files.
I want to ask how can I return a value from this Csd.exe application as an
indicator or a signal to the calling app that Csd.exe has finished working.
The problem is that the main component of my Csd.exe is a
public static void main(string[] args)
{
//All the work
//And that is it (done)!
//Here i want to enter a return int or a bool (true) so that the caller
can know
//that i am finished processing....
}
The Static void main does not let me return anything. How can i do that.
Please HELP!
Thanks and Regards
Sunny
I have a very serious issue at hand. I have created a small C# Console App
(Csd.exe) that collects a list of files as its argument and generates their
Md5 sets.
This application is used by other applications in my dept, which simply call
this Csd.exe app and passing a list of files.
I want to ask how can I return a value from this Csd.exe application as an
indicator or a signal to the calling app that Csd.exe has finished working.
The problem is that the main component of my Csd.exe is a
public static void main(string[] args)
{
//All the work
//And that is it (done)!
//Here i want to enter a return int or a bool (true) so that the caller
can know
//that i am finished processing....
}
The Static void main does not let me return anything. How can i do that.
Please HELP!
Thanks and Regards
Sunny