I am curious to know if I should minimize the code that goes inside a try/catch block or it really does not matters.
   public bool ObjectExists(string stringTest, string againSomethingElse)
    {
        if(true) {}
        else {} //Code here is better/worst/same
        try
        {
            //Versus code inside try/catch block
        }
        catch (Exception)
        {
            throw;
        }
    }