3
votes
5answers
92 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?
1
vote
3answers
56 views
Is there a Linq operation to determine whether there are items in a collection who have the same values for a pair of properties?
C#: I have a collection of objects . T has 2 properties. Property A and Property B. The rule that this collection needs to adhere to is that the combination of values for A and B m …
0
votes
2answers
87 views
.net 3.5 anonymous foreach
I'm trying to loop through the results of a function that is returning an anonymous object of results.
public static object getLogoNav()
{
XDocument loaded = XDocument.Load(Http …
0
votes
3answers
81 views
A simple and succinct definiton and explanation of anonymous types in C#?
I have no clue what an "anonymous type" is in C# nor how it is used. Can somone give me a good description of it and it's use?
[Note: i really know what it is and how to use it bu …
2
votes
7answers
61 views
Dynamically set the property name of a C# anonymous type
Is there any way to dynamically set the property name of an anonymous type?
Normally we'd do like this:
var anon = new { name = "Kayes" };
Now I'd like to set the name (or iden …
1
vote
5answers
71 views
How do I get values from SelectedItem in ComboBox with Linq and C# 3.5
I am really missing something with anonymous types, because I can't figure out what to do with the Combobox.SelectedItem property.
Here's the code that populates the combobox, an …
3
votes
2answers
129 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 …
0
votes
2answers
85 views
Why can’t new[] {AnonymousType, AnonymousType} be casted to IEnumerable?
Hi,
I have an array of an anonymous type declared as:
var list = new[]
{
new {Name = "A", Age = 10},
new {Name = "B", Age = 15}
}
Now list inherits from type Array, wh …
1
vote
4answers
69 views
Creating a dynamic anonymous types vairables
Hello,
I would like to ask if i can create a anonymous type variable and later on i can add more Properties? like
var x = new { Name = "Ahmed" }; and want to add Age to it?
how i c …
0
votes
2answers
37 views
How can i extract value of properties from anonymous class ?
When i declare
object o = new { name = "Bruce",Age=21 };
Console.WriteLine("name={0},age={1}",???,??? );
Now how can i print value of name and age?
2
votes
3answers
74 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 };
o …
2
votes
2answers
137 views
How does C# turn a variable name into an anonymous object property name?
When you create a new anonymous object using the following syntax:
string name = "Foo";
var myObject = new { name };
You get an object with a property named 'name':
myObject.na …
0
votes
4answers
55 views
WCF and Anonymous Types
I want to return an anonymous type over WCF. Is this possible?
2
votes
4answers
85 views
What relevant differences are there between anonymous and predefined classes in Java?
I have a large tree-like data structure of objects which behave mostly identical but differ in one or two methods that calculate some keys used to navigate through the structure. T …
1
vote
3answers
140 views
LINQ Filter anonymous type based on IEnumerable values within type
I'm using LINQ to SQL like:
var b =
from s in context.data
select new
{
id = s.id,
name = s.name
myEnumerable = s.OneToMany
};
Where my …
