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 933547
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T20:51:05+00:00 2026-05-15T20:51:05+00:00

I have a recursive object, a linked list really: public class LinkedList { public

  • 0

I have a recursive object, a linked list really:

public class LinkedList 
{
    public string UniqueKey { get; set; }
    public LinkedList LinkedList { get; set; }
}

LinkedList will have some object graph that will eventually end in LinkedList.LinkedList == null.

I would like to take all the objects in the graph and put them into a LinkedList collection so that I can iterate over them. How do I do this in C#? I feel as if there’s a really easy way of going about this using yield or Linq voodoo?

  • 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. Editorial Team
    Editorial Team
    2026-05-15T20:51:06+00:00Added an answer on May 15, 2026 at 8:51 pm

    Something like this should work. If you have control over the class you can make it IEnumerable directly.

    public class LinkedListEnumerable : IEnumerable<string>
    {
        LinkedList list;
        public LinkedListEnumerable(LinkedList l)
        {
            this.list = l;
        }
    
        public IEnumerator<string> GetEnumerator()
        {
            LinkedList l = list;
            while(l != null)
            {
                yield return l.UniqueKey;
                l = l.Next;
            }
        }
    }
    

    Then you can iterate over LinkedListEnumerable with a for-each loop.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

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

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

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

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

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer First thing first. Measure. Is a "whole table" really such… May 16, 2026 at 5:14 pm
  • Editorial Team
    Editorial Team added an answer You're looking for the :visible pseudo-class. if ($('.property > .evenprop').is(':visible')){… May 16, 2026 at 5:14 pm
  • Editorial Team
    Editorial Team added an answer I can find nothing clear in the manual, but looking… May 16, 2026 at 5:14 pm

Trending Tags

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

Top Members

Related Questions

I have a recursive algorithm which steps through a string, character by character, and
I have set up Auth and ACL successfully on my cakePHP app. How, now
When you want to recursively enumerate a hierarchical object, selecting some elements based on
I have a recursive method that returns categories, and checks for its sub categories.
I have a recursive call to a method that throws a stack overflow exception.
I have a List<> of objects containing two strings and a DateTime. I want
I have a tree of objects, where each object has a std::vector of pointers
I have a problem while trying to batch convert the encoding of some files
I have a tail recursive pathfinding algorithm that I've implemented in JavaScript and would
I'm new to the world of Makefile writing. I have a C project which

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.