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.

What is wrong with this code-snippet?

class Program
    {
        static void Main(string[] args)
        {
            var obj = new { Name = "A", Price = 3.003 };

            obj.Name = "asdasd";
            obj.Price = 11.00;

            Console.WriteLine("Name = {0}\nPrice = {1}",
                              obj.Name, obj.Price);

            Console.ReadLine();
        }
    }

I am getting the following errors:

Error   5	Property or indexer 'AnonymousType#1.Name' cannot be assigned to -- it is read only	.....\CS_30_features.AnonymousTypes\Program.cs	65	13	CS_30_features.AnonymousTypes
Error   6	Property or indexer 'AnonymousType#1.Price' cannot be assigned to -- it is read only	.....\CS_30_features.AnonymousTypes\Program.cs	66	13	CS_30_features.AnonymousTypes

How to re-set values into an anonymous type object?

share|improve this question

3 Answers

up vote 23 down vote accepted

Anonymous types in C# are immutable and hence do not have property setter methods. You'll need to create a new anonmyous type with the values

obj = new { Name = "asdasd", Price = 11.00 };
share|improve this answer
15  
One more thing to note, is that if the new anonymous type has the same number and type of properties in the same order it will be of the same internal type as the first – Yannick Motton Oct 11 '09 at 14:27

Anonymous types are created with read-only properties. You can't assign to them after the object construction.

From Anonymous Types (C# Programming Guide) on MSDN:

Anonymous types provide a convenient way to encapsulate a set of read-only properties into a single object without having to first explicitly define a type.

share|improve this answer

Anonymous types provide a convenient way to encapsulate a set of read-only properties into a single object without having to first explicitly define a type. The type name is generated by the compiler and is not available at the source code level. The type of the properties is inferred by the compiler. The following example shows an anonymous type being initialized with two properties called Amount and Message.

http://msdn.microsoft.com/en-us/library/bb397696.aspx

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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