SlurrerOfSpeech
- 141
- 11
My applications seriously look like
It is the cancer that is killing my programs. How can beat this disease?
Code:
public void ExecuteCommand ( )
{
// ...
try
{
CompareLastTwo();
}
catch ( Exception e )
{
Console.WriteLine("Error: {0}", e.Message);
}
// ...
}
public void CompareLastTwo ( )
{
// ...
try
{
// ...
Something();
}
catch ( Exception )
{
throw;
}
// ...
}
public void Something ( )
{
try
{
// ...
}
catch ( Exception )
{
throw;
}
}
It is the cancer that is killing my programs. How can beat this disease?