Possible Duplicate:
Use of var keyword in C#
I want to ask.....
What is the benefit of using var for initializing an object as in the first line of following code var sp is used for SerialPort.
what is the benefit of disposing an object after using it. as in following code the object SerialPort is disposed after sms has been sent to the recipient.
Code:
using (var sp = new SerialPort(cbcomport.Text))
{
sp.Open();
sp.WriteLine("AT" + Environment.NewLine);
sp.WriteLine("AT+CMGF=1" + Environment.NewLine);
sp.WriteLine("AT+CMGS=\"" + dt.Rows[i]["PhoneNo"] + "\"" + Environment.NewLine);
sp.WriteLine(tbsms.Text + (char)26);
Thread.Sleep(5000);
}