Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In C# 3.0 you can create anonymous class with the following syntax


var o = new { Id = 1, Name = "Foo" };

Is there a way to add these anonymous class to a generic list?

Example:

var o = new { Id = 1, Name = "Foo" };
var o1 = new { Id = 2, Name = "Bar" };

List<var> list = new List<var>();
list.Add(o);
list.Add(o1);

Another Example:

List<var> list = new List<var>();

while (....)
{
    ....
    list.Add(new {Id = x, Name = y});
    ....
}
share|improve this question

11 Answers

up vote 108 down vote accepted

You could do:

var list = new[] { o, o1 }.ToList();

There are lots of ways of skinning this cat, but basically they'll all use type inference somewhere - which means you've got to be calling a generic method (possibly as an extension method). Another example might be:

public static List<T> CreateList<T>(params T[] elements)
{
     return new List<T>(elements);
}

var list = CreateList(o, o1);

You get the idea :)

share|improve this answer
The correct syntax (at least in 3.5) is var list = new[] {o, o1}; – DHornpout Mar 4 '09 at 22:43
17  
@DHornpout: That would give an array, not a List<T>. – Jon Skeet Mar 4 '09 at 22:47
What version are you using? This is the compiler error I got Error 1 'System.Array' does not contain a definition for 'ToList' and no extension method 'ToList' accepting a first argument of type 'System.Array' could be found (are you missing a using directive or an assembly reference?) – DHornpout Mar 4 '09 at 22:52
9  
@DHornpout: Do you have "using System.Linq;" at the top of your file? ToList is a LINQ operator. – Jon Skeet Mar 4 '09 at 23:06
2  
Got it.. Need to include "using System.Linq". Thanks. – DHornpout Mar 4 '09 at 23:13
show 4 more comments

Here is the answer.

string result = String.Empty;

var list = new[]
{ 
    new { Number = 10, Name = "Smith" },
    new { Number = 10, Name = "John" } 
}.ToList();

foreach (var item in list)
{
    result += String.Format("Name={0}, Number={1}\n", item.Name, item.Number);
}

MessageBox.Show(result);
share|improve this answer
6  
Dutt, your code should work without the .ToList() at the end. – DHornpout Nov 4 '09 at 1:26
Thanks Dutt, this is exactly what I was looking for! – longda May 5 '11 at 23:57
1  
okay cool, now we need an example of replacing the new {} lines with a select statement. var list = sourceList.Select( o => new { o.ModelId, o.PartNumber, o.Quantity }).ToList(); – towpse Jan 24 at 16:37
@towpse any solution about it ? – Kiquenet Mar 20 at 8:39
@Dutt, any sample if I use a method (function) that returns a List<T> ? – Kiquenet Mar 20 at 8:41

Yes, you can say List<object> and things will work. However, list[0].Id won't work. This will work in C# 4.0 by having a List<dynamic>.

UPDATE: As mentioned in the comments, this List<dynamic> trick won't get you IntelliSense, but it will work at runtime.

share|improve this answer
It's not strongly-typed, though, in the sense that you'll have no compiler intellisense support for the items in the list. – Joel Coehoorn Mar 4 '09 at 22:12
3  
This is the kind of things I fear people will do with dynamic. – erikkallen Mar 5 '09 at 9:47
I didn't say it was a great idea, but that it was possible :-) There could be a need if storing objects from Ruby for example. – Jeff Moser Mar 5 '09 at 14:40
But in those cases the source type is dynamic after all, it makes no sense to use a List<dynamic> for anonymous types. – Dykam Oct 30 '09 at 9:13

I guess

List<T> CreateEmptyGenericList<T>(T example) {
    return new List<T>();
}

void something() {
    var o = new { Id = 1, Name = "foo" };
    var emptyListOfAnonymousType = CreateEmptyGenericList(o);
}

will work.

You might also consider writing it like this:

void something() {
    var String = string.Emtpy;
    var Integer = int.MinValue;
    var emptyListOfAnonymousType = CreateEmptyGenericList(new { Id = Integer, Name = String });
}
share|improve this answer
Yes this solution will help solve initialize the Anonymous array. Thanks. – DHornpout Mar 4 '09 at 22:55
Just put a little <T> after the method name. – Martin Dec 2 '11 at 14:16

You can do this in your code.

var list = new[] { new { Id = 1, Name = "Foo" } }.ToList();
list.Add(new { Id = 2, Name = "Bar" });
share|improve this answer

Here is my attempt.

List<object> list = new List<object> { new { Id = 10, Name = "Testing1" }, new {Id =2, Name ="Testing2" }}; 

I came up with this when I wrote something similar for making a Anonymous List for a custom type.

share|improve this answer

Check out this example for creating/using Lists with anonymous classes.

share|improve this answer
2  
Post a quick example and I'll upvote. – Joel Coehoorn Mar 4 '09 at 22:13

Instead of this:

var o = new { Id = 1, Name = "Foo" }; 
var o1 = new { Id = 2, Name = "Bar" }; 

List <var> list = new List<var>(); 
list.Add(o); 
list.Add(o1);

You could do this:

var o = new { Id = 1, Name = "Foo" }; 
var o1 = new { Id = 2, Name = "Bar" }; 

List<object> list = new List<object>(); 
list.Add(o); 
list.Add(o1);

However, you will get a compiletime error if you try to do something like this in another scope, although it works at runtime:

private List<object> GetList()
{ 
    List<object> list = new List<object>();
    var o = new { Id = 1, Name = "Foo" }; 
    var o1 = new { Id = 2, Name = "Bar" }; 
    list.Add(o); 
    list.Add(o1);
    return list;
}

private void WriteList()
{
    foreach (var item in GetList()) 
    { 
        Console.WriteLine("Name={0}{1}", item.Name, Environment.NewLine); 
    }
}

The problem is that only the members of Object are available at runtime, although intellisense will show the properties id and name.

In .net 4.0 a solution is to use the keyword dynamic istead of object in the code above.

Another solution is to use reflection to get the properties

using System;
using System.Collections.Generic;
using System.Reflection;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            Program p = new Program();
            var anonymous = p.GetList(new[]{
                new { Id = 1, Name = "Foo" },       
                new { Id = 2, Name = "Bar" }
            });

            p.WriteList(anonymous);
        }

        private List<T> GetList<T>(params T[] elements)
        {
            var a = TypeGenerator(elements);
            return a;
        }

        public static List<T> TypeGenerator<T>(T[] at)
        {
            return new List<T>(at);
        }

        private void WriteList<T>(List<T> elements)
        {
            PropertyInfo[] pi = typeof(T).GetProperties();
            foreach (var el in elements)
            {
                foreach (var p in pi)
                {
                    Console.WriteLine("{0}", p.GetValue(el, null));
                }
            }
            Console.ReadLine();
        }
    }
}
share|improve this answer
var list = new[]{
new{
FirstField = default(string),
SecondField = default(int),
ThirdField = default(double)
}
}.ToList();
list.RemoveAt(0);
share|improve this answer

You can do it this way:

var o = new { Id = 1, Name = "Foo" };
var o1 = new { Id = 2, Name = "Bar" };

var array = new[] { o, o1 };
var list = array.ToList();

list.Add(new { Id = 3, Name = "Yeah" });

It seems a little "hacky" to me, but it works - if you really need to have a list and can't just use the anonymous array.

share|improve this answer
static void Main()
{
    List<int> list = new List<int>();
    list.Add(2);
    list.Add(3);
    list.Add(5);
    list.Add(7);
}
share|improve this answer
1  
I see no anonymous classes, here. – Andrew Barber Sep 21 '12 at 21:56

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.