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

Now, I have two forms, called form1 and form2, in the form1 there's a
i have two embeded forms Form1 and Form2 in a general form class FormA,
Let say I have are two WPF forms: Form1 and Form2 . Form1 contains
I have two Forms. (Form1 and Form2) Form1_load method, I call to create Form2.
I have two forms. Clicking button on form1 opens form2 where user adds details
I have two forms.. form1 and form2 in form1 i have gridview with three
I have application in VB.net that have two different form (Form1 and Form2). Now
if i have two media players in form1 and form2 respectively....how can i control
I have created two forms in C# using Add new item. Form1 is my
Is there any way to pass values between two forms. Let's say, I have

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.