Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
6answers
2k views

Enumerating Collections that are not inherently IEnumerable?

When you want to recursively enumerate a hierarchical object, selecting some elements based on some criteria, there are numerous examples of techniques like "flattening" and then filtering using Linq ...
8
votes
2answers
1k views

Render multiple control collections in ASP.NET custom control

I've build a custom WebControl, which has the following structure: <gws:ModalBox ID="ModalBox1" HeaderText="Title" runat="server"> <Contents> <asp:Label ID="KeywordLabel" ...
4
votes
4answers
107 views

Foreach over multiple ControlCollections

I have a tab control in my Windows Form, and I want to iterate over each element in two different tabs. When a file is opened, I want all the elements of both to be enabled, and when the file is ...
4
votes
3answers
226 views

Will Microsoft ever make all collections useable by LINQ?

I've been using LINQ for awhile (and enjoy it), but it feels like I hit a speedbump when I run across .NET specialized collections(DataRowCollection, ControlCollection). Is there a way to use LINQ ...
2
votes
2answers
370 views

Using C# to recursively get a collection of controls from a controlcollection

Currently I am trying to extract a collection of dynamically created controls (checkboxes and dropdownlists) from a recursive control collection (repeater). This is the code I am using. private void ...
1
vote
0answers
32 views

ASP.NET Get Page control collection at design-time

Whilst trying to capture the HTML from a Web.UI.Page at design-time (in a UITypeEditor) using the RenderControl method, I noticed that only server controls were being rendered. So, given this aspx ...
1
vote
4answers
2k views

C# ControlCollection Extension GetAllTextboxes

How could I get only the texboxes in a ControlCollection ? I try : public static IEnumerable<TextBox> TextBoxes(this ControlCollection controlCollection) { return ...