Tagged Questions

1
vote
2answers
40 views

Anonymous collection initializer for a dictionary

Is it possible to implicitly declare next Dictionary<HyperLink, Anonymous>: { urlA, new { Text = "TextA", Url = "UrlA" } }, { urlB, new { Text = "TextB", Url = "UrlB" } } so I could use it …
0
votes
1answer
15 views

Silverlight security: giving a permission to access anonymous classes to a class library

I'm porting an existing class library to Silverlight. I used lambda expression compilation a lot and now I'm experiencing security problems because of it. In particular, if an anonymous class from a …
0
votes
3answers
40 views

Entity Framework: How to partially populate an Entity

When creating a query with EF, Normally we will create an anonymous type in order to limit the number of columns returned. But anonymous type cannot be returned or used as a parameter to a method …
1
vote
1answer
40 views

Problems with Linq using anonymous type

Why did the anonymous type property "Points" still have the value "0"? Public Class Test Public Sub New(ByVal _ID As Integer) ID = _ID End Sub Public ID As Integer End Class Dim …
0
votes
2answers
42 views

When selecting an anonymous type with LINQ from EF, is there no way to run a method on an object as you select it?

Let's say I have a method: bool myMethod(int a) { //return a bool } So let's say I the following // assume a has prop1 and prop2 both ints var mySelection = from a in myContainer …
3
votes
5answers
104 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?
0
votes
2answers
109 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 = …
4
votes
2answers
162 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 …
1
vote
5answers
97 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, and it works just fine …
1
vote
3answers
63 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 must be unique within …
0
votes
3answers
88 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 but thought i'd ask …
2
votes
7answers
97 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 identifier) of the …
0
votes
2answers
90 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, which implements …
1
vote
4answers
101 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 can do this? Another …
2
votes
3answers
93 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"; …

1 2 3 4 5 6 next
15 30 50 per page