19
votes
5answers
5k 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 …
9
votes
8answers
3k 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
…
8
votes
5answers
3k 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();
…
7
votes
4answers
243 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 …
6
votes
5answers
980 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?
5
votes
6answers
229 views
Is there a way to return Anonymous Type from method?
I know I can't write a method like:
public var MyMethod()
{
return new{ Property1 = "test", Property2="test"};
}
I can do it otherwise:
public object MyMethod()
{
return new{ Property1 = …
5
votes
6answers
1k views
How to return anonymous type from c# method that uses LINQ to SQL
I have a standard LINQ to SQL query, which returns the data as an anonymous type (containing about 6 columns of data of various datatypes).
I would like to make this returned object available to …
5
votes
11answers
502 views
The evilness of ‘var’ in C#? [closed]
Possible Duplicates:
C# 'var' keyword versus explicitly defined variables
C# - Do you use "var"?
This is a relatively simple question...more of a poll really. I am a HUGE fan of …
5
votes
5answers
364 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:
…
5
votes
2answers
239 views
Anonymous Record constructors in delphi
Is it possible to use records as a method parameter, and call it without implicitly declaring an instance of said record?
I would like to be able to write code like this.
type
TRRec = record
…
5
votes
5answers
808 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",
…
4
votes
2answers
171 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 …
4
votes
4answers
303 views
c#: Cast to Anonymous Type
Hi
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:
…
4
votes
6answers
142 views
What is the purpose of anonymous types?
What are the best use cases for anonymous types?
It would seem to me that they are only useful within a limited context, for example one class or one function. They can hardly be used outside of this …
4
votes
7answers
707 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 …
