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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T14:17:47+00:00 2026-05-12T14:17:47+00:00

I have two forms (Form1 and Form2). On Form1 there is a ‘public int

  • 0

I have two forms (Form1 and Form2). On Form1 there is a ‘public int i’ variable, which is set to value 1 in Form1 constructor.
Then I open Form2 from Form1 with this code:

Form2 f2 = new Form2(ref i);
f2.ShowDialog();

The constructor of Form2 looks like this:

public int i;
public Form2(ref int x)
{
    InitializeComponent();
    i = x;
}

Then I set variable i on Form2 to value 2 and close Form2. Now I would expect the variable i on Form1 to have value 2 (because of ‘ref’ keyword by passing parameters), but the value is still 1. What am I doing wrong and why is ref keyword not working in my example?

Thanks

  • 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-12T14:17:48+00:00Added an answer on May 12, 2026 at 2:17 pm

    What’s actually happening.

    1. You create an object1 with a integer member named “i”
    2. You pass a reference to “i” into a new object constructor. The reference to “i” is called “x”.
    3. You copy the value of “x” into a variable in the second object, also called “i”.
    4. You exit object2’s constructor. The reference to object1.i ends here.
    5. You modify object2.i (which is a copy of object1.i, but not a reference, pointer, or link). object1.i is not modified.

    There are many ways to accomplish what you want, either with events, or by passing in an object that will be shared between object1 and object2.

    Class Form1
    {
        Object i = new Object();
        ...
        public void DoSomething()
        {
            Form2 f = new Form2(i);
            f.Show();
        }
    }
    

    This would probably be the easiest way to accomplish what you’re going for.

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

Sidebar

Related Questions

I am using standard windows forms controls under C#. I have two controls which
I have two forms, form A and form B. These forms must differ in
I have two forms on a page (one is being grabbed by AJAX). I
I have two forms in my rails app. They both exist in separate tabs
I have two completely different forms in one template. How to process them in
I've got a form where I have two radio buttons and two interchangeable controls
I have two different grid controls on the same form. They share the same
I have two functions to add and remove table rows that contain a form
For simplicity lets say I have two flex mxml pages. form.mxml button.mxml If the
I have a form in VB6 with two combo boxes (cboCustomer and cboItemNumber). When

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.