Dim response As MyClass = obj.ProcessRequest(strRequest)
Msgbox("This is the response message: " & response.Message)
If there is a problem in the ProcessRequest method and it returns null, then the next line will not work and a NullReference exception will be thrown.
What is the easiest way to have response.Message evaluate to an empty string if response is null?