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

  • SEARCH
  • Home
  • 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 3317852
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T22:38:09+00:00 2026-05-17T22:38:09+00:00

I know there are no pointers in C#, but I am trying to figure

  • 0

I know there are no pointers in C#, but I am trying to figure out how to do the following, which I would have done with pointers (or better yet, iterators) in C++ (I am taking a course in C#, but I already know C++).

We got an assignment to write a simple “store” program (inventory, transactions, etc.). My first idea (coming from C++) was this: have a linked list of items and their amount in stock. Then, have a class representing a sale, which has a list of the items in the current sale, where each item is represented as an iterator to specific items in the master stock list and a value for the amount. (I hope this is clear.)

I tried to do the same in C# but can’t figure out how to get those iterators to the master list (they should preferably also be good across updates to the master list).
How do you do this?

  • 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-17T22:38:10+00:00Added an answer on May 17, 2026 at 10:38 pm

    You don’t need to do anything special to use references, they are used by default in C#.

    I’m assuming you’d do something like this in C++:

    class Sale {
      public:
        void AddItem(Item* i) {
            items.push_back(i);
        }
    
      private:
        std::vector<Item*> items;
    };
    

    In C#, since it uses references rather than pass by value by default, you get that behavior by default. You’d get similar behavior in C# from the following code:

    class Sale {
      private List<Item> items;
    
      public void AddItem(Item i) {
        items.Add(i);
      }
    }
    

    To call this C# code you could just do something like

    Item item = new Item("A test item");
    Sale sale = new Sale();
    sale.AddItem(item);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a code which kinda works, but not really i can't figure out
Im trying to figure out how to do this but i cant seem to
I am trying to figure this out but am stumped a bit. What I
I know this has to be out there somewhere, but how does the GregorianCalendar
I know that there are similar threads but after spending an hour trying to
I know there have been many questions on grid and pack in the past
I know there is a lot on this topic but I can't get any
I know there are a lot of similar questions on SF, but I think
I know there is a wiki page about it , but since I'm very
I know there are a lot of questions around on this subject, but I've

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.