Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

83
votes
6answers
26k views

Can a C# anonymous class implement an interface?

Is it possible to have an anonymous type implement an interface. I've got a piece of code that I would like to work, but don't know how to do this. I've had a couple of answers that either say no, or ...
52
votes
7answers
27k views

How do I serialize a C# anonymous type to a JSON string?

I'm attempting to use the following code to serialize an anonymous type to JSON: var serializer = new DataContractJsonSerializer(thing.GetType()); var ms = new MemoryStream(); ...
46
votes
9answers
32k views

LINQ Select Distinct with Anonymous Types

So I have a collection of objects. The exact type isn't important. From it I want to extract all the unique pairs of a pair of particular properties, thusly: myObjectCollection.Select(item=>new ...
39
votes
9answers
16k views

A generic list of anonymous class

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 ...
38
votes
4answers
5k views

Dynamic Anonymous type in Razor causes RuntimeBinderException

I'm getting the following error: 'object' does not contain a definition for 'RatingName' When you look at the anonymous dynamic type, it clearly does have RatingName. I realize I can do this ...
23
votes
5answers
5k views

Accessing constructor of an anonymous class

Lets say I have a concrete class Class1 and I am creating an anonymous class out of it. Object a = new Class1(){ void someNewMethod(){ } }; Now is there any way I could ...
15
votes
7answers
492 views

Why does Enum.GetValues() return names when using “var”?

Can anyone explain this? using System; namespace TestEnum2342394834 { class Program { static void Main(string[] args) { //with "var" foreach (var ...
15
votes
3answers
2k views

Can I serialize Anonymous Types as xml?

I understood that anonymous types are marked private by the compiler and the properties are read-only. Is there a way to serialize them to xml (without deserialize) ? It works with JSON, how can I do ...
15
votes
8answers
2k views

Declaration of Anonymous types List

Is there any way to declare a list object of anonymous type. I mean List<var> someVariable = new List<var>(); someVariable.Add( new{Name="Krishna", Phones = ...
14
votes
4answers
2k views

C# ‘dynamic’ cannot access properties from anonymous types declared in another assembly

Code bellow is working well as long as I have class ClassSameAssembly in same assembly as class Program. But when I move class ClassSameAssembly to separate assembly I have runtime error. Is it ...
14
votes
6answers
15k views

How to return anonymous type from c# method that uses LINQ to SQL [closed]

Possible Duplicate: LINQ to SQL: Return anonymous type? I have a standard LINQ to SQL query, which returns the data as an anonymous type (containing about 6 columns of data of various ...
13
votes
4answers
1k views

Return/consume dynamic anonymous type across assembly boundaries

The code below works great. If the Get and Use methods are in different assemblies, the code fails with a RuntimeBinderException. This is because the .Net runtime system only guarantees commonality of ...
12
votes
2answers
554 views

How To Test if a Type is Anonymous?

I have the following method which serialises an object to a HTML tag. I only want to do this though if the type isn't Anonymous. private void MergeTypeDataToTag(object typeData) { if (typeData != ...
12
votes
3answers
6k views

How to access property of anonymous type in C#?

I have this: List<object> nodes = new List<object>(); nodes.Add( new { Checked = false, depth = 1, id = "div_" + d.Id }); ... and I'm wondering if I can then grab the ...
12
votes
5answers
4k views

Anonymous Type vs Dynamic Type

What are the real differences between anonymous type(var) in c# 3.0 and dynamic type(dynamic) that is coming in c# 4.0?
11
votes
3answers
582 views

Is there a way to create anonymous structs in C#?

There doesn't seem to be any way as anonymous types derive from object. But I thought I'd ask since much of the time we use anonymous types in simple query expressions to extract subsets of data to be ...
11
votes
4answers
3k views

C# - Resolving a parameter name at runtime

In C#, is there a way (terser the better) to resolve the name of a parameter at runtime? For example, in the following method, if you renamed the method parameter, you'd also have to remember to ...
11
votes
9answers
3k views

C# feature request: implement interfaces on anonymous types

I am wondering what it would take to make something like this work: using System; class Program { static void Main() { var f = new IFoo { Foo = "foo", ...
11
votes
7answers
1k views

How should anonymous types be used in C#?

I've seen lots of descriptions how anonymous types work, but I'm not sure how they're really useful. What are some scenarios that anonymous types can be used to address in a well-designed program?
10
votes
3answers
132 views

Use exceptional char (minus) in property name of anonymous type

The problem I am trying to declare an anonymous type with a property named data-maxchars. Because the minus is an operator it degrades (?) my desired property name into an operation and I get a ...
10
votes
6answers
834 views

Working with C# Anonymous Types

I am calling a method that returns a List variable that contains a c# Anonymous Type objects. For example: List<object> list = new List<object>(); foreach ( Contact c in allContacts ) { ...
10
votes
1answer
1k views

Silverlight 4 Data Binding with anonymous types

Does anyone know if you can use data binding with anonymous types in Silverlight 4? I know you can't in previous versions of silverlight, you can only databind to public class properties and anonymous ...
10
votes
2answers
654 views

Can I use Attributes with Anonymous classes?

I have a anonymous class: var someAnonymousClass = new { SomeInt = 25, SomeString = "Hello anonymous Classes!", SomeDate = DateTime.Now }; Is there anyway to attach Attributes to this ...
9
votes
5answers
2k views

Passing an instance of anonymous type over WCF

I have a WCF service method that expects an object and then retrieves its properties using reflection. On the client side I create an anonymous type object var obj = new {FirstName="John", ...
9
votes
5answers
4k views

Cast to Anonymous Type

I had the following problem today, and I was wondering if there is a solution for my problem. My idea was to build anonymous classes and use it as a datasource for a WinForm BindingSource: ...
9
votes
7answers
783 views

Would .NET benefit from “named anonymous” types?

Consider this: var me = new { FirstName = "John", LastName = "Smith" }; This is fine as we can then do this: Console.WriteLine("{0} {1}", me.FirstName, me.LastName); However we can't do this: ...
8
votes
7answers
238 views

C# Anonymous Type access from other method

i've a ComboBox where is filled using a Collections of Anonymous Type: var results = (from row in data.Tables[0].AsEnumerable() select new { Id = ...
8
votes
2answers
130 views

Why are anonymous types in .NET implemented as reference type?

Because an anonymous type is readonly anyway, is would be more efficient if they implemented them as structs so that linq queries doesn't need to create tons of temporary objects: // This doesn't ...
8
votes
4answers
1k views

In c# convert anonymous type into key/value array?

I have the following anonymous type: new {data1 = "test1", data2 = "sam", data3 = "bob"} I need a method that will take this in, and output key value pairs in an array or dictionary. My goal is ...
8
votes
3answers
237 views

Playing with anonymous types

From Jon Skeet's wonderful book C# In Depth, First Edition: class Film { public string Name { get; set; } public int Year { get; set; } public override string ToString() { ...
8
votes
6answers
552 views

Determining whether a Type is an Anonymous Type

In C# 3.0, is it possible to determine whether an instance of Type represents an Anonymous Type?
7
votes
1answer
157 views

What is the purpose of extending an anonymous type in Scala?

I'm trying to get a better understanding of Scala, and I can't seem to find a valid usecase for code like the following: class C extends { def m() { /* ... */ } } What is the rationale for allowing ...
7
votes
3answers
2k views

EditorFor() and additionalViewData: how to add data in helper class?

EditorFor() can take an object additionalViewData parameter which the typical method to populate is something like: EditorFor(model => model.PropertyName, new { myKey = "myValue" }) How can I ...
7
votes
2answers
82 views

DisplayNameAttribute for anonymous class

If I had a non-anonymous class like this, I know I can use DisplayNameAttribute like this. class Record{ [DisplayName("The Foo")] public string Foo {get; set;} [DisplayName("The Bar")] ...
7
votes
1answer
164 views

Why do my anonymous types not work in Clay when using VB.Net but do work in C#

I was trying out clay in VB.Net but found that I could not get everything to work. Here is Clay This works in C# dynamic c = new ClayFactory(); var plant = c.Plant(new {LatinName = ...
7
votes
3answers
208 views

C#: Compiler optimizations of anonymous types

OK OK, I know this is a hack, but this was for a tiny data-manipulation project and I wanted to play around. ;-) I was always under the impression that the compiler would examine all anonymous types ...
7
votes
6answers
195 views

Use of var in linq

What does var really do in the following case? var productInfos = from p in products select new { p.ProductName, p.Category, Price = p.UnitPrice };
7
votes
5answers
271 views

Is there any reasonable use of a function returning an anonymous struct?

Here is an (artificial) example of using a function that returns an anonymous struct and does "something" useful: #include <iostream> template<typename T> T* func( T* t, float a, float b ...
7
votes
3answers
3k views

A dictionary where value is an anonymous type in C#

Is it possible in C# 3.net to create a System.Collections.Generic.Dictionary<TKey, TValue> where TKey is unconditioned class and TValue - an anonymous class with a number of properties, for ...
7
votes
3answers
1k views

C# Anonymous types problem

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"; ...
7
votes
4answers
353 views

Are c# anonymous methods object oriented?

I'm just checking out anonymous methods (in c#)--part of me likes the flexibility and short-hand, but I'm also concerned that it may make the code harder to read. It also occurred to me that this ...
7
votes
4answers
2k views

IEqualityComparer for anonymous type

I have this var n = ItemList.Select(s => new { s.Vchr, s.Id, s.Ctr, s.Vendor, s.Description, s.Invoice }).ToList(); n.AddRange(OtherList.Select(s => new { s.Vchr, s.Id, s.Ctr, s.Vendor, ...
7
votes
2answers
3k views

Anonymous class initialization in VB.Net

i want to create an anonymous class in vb.net exactly like this: var data = new { total = totalPages, page = page, records = totalRecords, ...
7
votes
3answers
840 views

Anonymous Types - Are there any distingushing characteristics?

Is there anything to use, to determine if a type is actually a anonymous type? For example an interface, etc? The goal is to create something like the following... //defined like... public static T ...
7
votes
6answers
9k views

Can you Instantiate an Object Instance from JSON in .NET?

Since Object Initializers are very similar to JSON, and now there are Anonymous Types in .NET. It would be cool to be able to take a string, such as JSON, and create an Anonymous Object that ...
6
votes
3answers
142 views

How to create an anonymous object with property names determined dynamically?

Given an array of values, I would like to create an anonymous object with properties based on these values. The property names would be simply "pN" where N is the index of the value in the array. ...
6
votes
5answers
184 views

Can anonymous class be used as return types in C++?

Is there any way to use anonymous class in C++ as return types? I googled that like this may work: struct Test {} * fun() { } But this piece of code doesn't complie, the error message is: new ...
6
votes
5answers
254 views

How can I create temporary objects to pass around without explicitly creating a class?

I frequently find myself having a need to create a class as a container for some data. It only gets used briefly yet I still have to create the class. Like this: public class TempObject { public ...
6
votes
4answers
244 views

How to access count property of a dynamic type in C# 4.0?

I have the follow method that returns a dynamic object representing an IEnumerable<'a> ('a=anonymous type) : public dynamic GetReportFilesbyStoreProductID(int StoreProductID) { ...
6
votes
1answer
109 views

Reference anonymous type properties

I am creating an composite anonymous type and wondered if I can reference the field YesPercent for the NoPercent? var test = (from p in db.users group p by p.ID into g ...

1 2 3 4 5 8