Hi,
My application uses a thread which should be running continuously. If any exception it should log that exception and should not stop. currently my code is like below. Can any one help me?
void methodname()
{
try
{
while(1)
executable statements
}
catch
{
log exception
}
}