I am Developing Auto Email Sending Program in VB.net Windows Application. The weird thing is that when debugger reaches to
Dim SMTP As New SmtpClient(_SMTP) this line it goes to the calling function again and the debugging Strip color changes to green from Yellow for Example:
Private Sub Send_Mail_To_Checker() <-- Debugger Jumps Here with Color changes to Green
'----Some code-------
SendMail()
End Sub
Public Sub SendMail()
Dim Mail As New MailMessage
_SMTP="smtp.gmail.com"
Dim SMTP As New SmtpClient(_SMTP) '<-- Debugger Jumps from this
End Sub
Please Help