Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Use of var keyword in C#

I want to ask.....

  1. 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.

  2. 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);
}
share|improve this question
Thanks Anders Abel for Editing – kashif Apr 30 '12 at 10:47
4  
Both of these questions have been asked and answered many times here on SO. – Lasse V. Karlsen Apr 30 '12 at 10:50

marked as duplicate by Will May 1 '12 at 13:45

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

4 Answers

up vote 4 down vote accepted

1) With var you don't have to write out the word SerialPort twice.

If you're calling a method that returns an object that might have a very complicated signature, using var definitely helps. The most common case is for linq queries.

var q = from c in orders
        order by c.id
        select c;

The type of q is IOrderedQueryAble<Order> which I prefer to not write out.

2) Disposing the serial port when you're done with it immediately closes it and releases it for other applications to use it. If you don't dispose it, the port will be locked until the GC has collected the object (which may take quite some time).

share|improve this answer
what do you mean – kashif Apr 30 '12 at 10:47
what about the second question??? – kashif Apr 30 '12 at 10:51
@kashif it's answered too. Read again. – wRAR Apr 30 '12 at 10:51
does disposing free the memory it occupied and terminates the object??? – kashif Apr 30 '12 at 10:51
@kashif no, Dispose only frees unmanaged resources. And don't shout. – wRAR Apr 30 '12 at 10:56
show 2 more comments
  1. With var you type less.

  2. The GC will be free to collect the disposed object when it sees fit. If it is an unmanaged resource, the call to Dispose will cleanup those resources.

share|improve this answer
what is unmanaged resource. is it something like that an object occupies the space in memory when created and disposing it after using it = closing it to free the memory or somthing else?? – kashif Apr 30 '12 at 10:54
@kashif - The parallel port is one. Other can be: file systems, databases. Basically, any code that is not .NET or that uses resources that are not .NET (COM objects, ports, buses etc...) – Oded Apr 30 '12 at 10:56

In your case var is an option of not writing SerialPort twice like

SerialPort sp = new SerialPort(cbcomport.Text)

and

var sp = new SerialPort(cbcomport.Text)

Both of the above statements are same

moreover in some places like LINQ when we are not sure what the outcome of LINQ query is then we write var to store fetched results.

share|improve this answer
@Oded: Thanks for editing. – Nikhil Agrawal Apr 30 '12 at 10:53

@wRAR You said Dispose only frees unmanaged resources and Anders said it closes the object. I used the following query to verify what Anders said and found that he is right. for the first if condition I got Conn is opened and for the 2nd one I got Conn is closed

private void button1_Click(object sender, EventArgs e)
{
    SqlConnection cn = new SqlConnection("data source=server;initial catalog=acc;uid=sa;pwd=fantastic");
    cn.Open();
    if (cn.State == ConnectionState.Open)
    {

        MessageBox.Show("connection is opened");

    }
    else
    {
        MessageBox.Show("conn is closed");
    }
    cn.Dispose();
    if (cn.State == ConnectionState.Open)
    {

        MessageBox.Show("connection is opened");

    }
    else
    {
        MessageBox.Show("conn is closed");
    }
}
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.