Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 109877
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T02:08:19+00:00 2026-05-11T02:08:19+00:00

I have a List of a complex type – an object with a few

  • 0

I have a List of a ‘complex’ type – an object with a few string properties. The List itself is a property of another object and contains objects of a variety of types, as shown in this abbreviated class structure:

Customer {    public List<Characteristic> Characteristics;    .    .    . }  Characteristic {    public string CharacteristicType;    public string CharacteristicValue; } 

I’d like to be able to collect a List of the values of a given type of Characteristics for the current Customer, which I can do in a 2-step process as follows:

List<Characteristic> interestCharacteristics = customer.Characteristics.FindAll(    delegate (Characteristic interest) {       return interest.CharacteristicType == 'Interest';    } );  List<string> interests = interestCharacteristics.ConvertAll<string>(    delegate (Characteristic interest) {       return interest.CharacteristicValue;    } ); 

That works fine, but it seems like a long way around. I’m sure I must be missing a simpler way of getting to this list, either by chaining together the FindAll() and Convert() methods, or something else I’m overlooking entirely.

For background, I’m working in .Net 2.0, so I’m limited to the .Net 2 generics, and the Characteristic class is an external dependency – I can’t change it’s structure to simplify it, and there are other aspects of the class that are important, just not in relations to this problem.

Any pointers or additional reading welcomed.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T02:08:20+00:00Added an answer on May 11, 2026 at 2:08 am

    Here’s a generator implementation

    public static IEnumerable<string> GetInterests(Customer customer) {     foreach (Characteristic c in customer.Characteristics)     {         if (c.CharacteristicType == 'Interest')             yield return c.CharacteristicValue;     } } 

    sadly 3.5 extension methods and lambda are out based on your requirements but for reference here’s how to do it:

    customer.Characteristics     .Where(c => c.CharacteristicType == 'Interest')     .Select(c => c. CharacteristicValue); 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 72k
  • Answers 72k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • added an answer Do you mean tabs its a JQuery UI plugin. May 11, 2026 at 1:47 pm
  • added an answer Factor the actual functionality (finding the anagrams) into a method.… May 11, 2026 at 1:47 pm
  • added an answer You can do this: get url from $_GET send Location:… May 11, 2026 at 1:47 pm

Related Questions

No related questions found

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.