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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T20:43:18+00:00 2026-06-14T20:43:18+00:00

How could I possibly do the following: OrderedDictionary<string, object> bag = new OrderedDictionary<string, object>();

  • 0

How could I possibly do the following:

OrderedDictionary<string, object> bag = new OrderedDictionary<string, object>();

public void Add(string str,ref object obj) {
    bag.Add(str,**ref obj**);
}

So anytime I’ll want to access that specific ‘obj’ inside ‘bag’, it will refer to the passed ‘obj’ in the arguments.

  • 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-06-14T20:43:19+00:00Added an answer on June 14, 2026 at 8:43 pm

    Objects are already reference types. Accessing the object in your dictionary will modify the original obj.

    What you have is multiple references to the same object in memory. So modifying or copying or anything like that will work correctly and persist in the same object. Keep in mind though, that if you want to set the object to something else (like null) it will only be setting the current reference to null, and not the actual object.

    ref on the other hand, is useful for passing the actual reference as a parameter, and not the object in memory. Take this for example:

    void SomeMethod(object obj)
    {
        obj = null;
    }
    
    void SomeRefMethod(ref object obj)
    {
        obj = null;
    }
    

    With this invocation:

    object obj1 = new object();
    
    Console.WriteLine(obj1 == null); //False
    
    SomeMethod(obj1);
    Console.WriteLine(obj1 == null); //False
    
    SomeMethodRef(ref obj1);
    Console.WriteLine(obj1 == null); //True
    

    In this situation, obj1 will still be non-null after the call to SomeMethod, and it will be null after the call to SomeMethodRef.

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

Sidebar

Related Questions

The following code runs fine on AppHarbor . public virtual void button1Clicked (object sender,
What could possibly go wrong with the following transaction if executed by concurrent users
Consider the following code where LockDevice() could possibly fail and throw an exception on
I have the following data structure: public class Person { public string Name{get;set;} public
I have the following class: public class Data { static public SqlDataReader ExecutSql(string sql)
What could possibly cause this weird python behaviour? Python 2.6.2 (r262:71600, May 31 2009,
What could possibly caused a FK error? I'm inserting an 'Activity' record into a
We are developing an application which is read heavy and could possibly have millions
OpenFileDialog^ dialog = gcnew OpenFileDialog; dialog->ShowDialog(); What could possibly be wrong with this? I'm
This could quite possibly be the dumbest question ever asked. Our client wants us

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.