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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T10:24:37+00:00 2026-06-02T10:24:37+00:00

I just noticed .net allows us to do like this. public void Func1(ref String

  • 0

I just noticed .net allows us to do like this.

  public void Func1(ref String abc)
  {
  }

I was wondering “ref” keyword makes any sense???? as String is a Class(reference type)

Is it any different from.

 public void Func1(String abc)
 {
 }

I am just asking as i am confused. either missing some concept or they are one and the same thing and “ref” keyword has no sense in this context.

  • 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-02T10:24:39+00:00Added an answer on June 2, 2026 at 10:24 am

    Parameters are passed by value by default. If you pass a parameter into a method, the original variable does not get modified. If you pass a parameter as a ref parameter though, the original variable that you passed in can get modified.

    Try this:

    public void Func1(String abc) {
        abc = "Changed from Func1";
    }
    
    public void Func2(ref String abc) {
        abc = "Changed from Func2";
    }
    
    public void main() {
        string foo = "not changed";
        Func1(foo);
        Console.WriteLine(foo);
        Func2(ref foo);
        Console.WriteLine(foo);
    }
    

    The output you will get is:

    not changed
    Changed from Func2
    

    In Func1 a copy of foo is created, which refers to the same String. But as soon as you assign it another value, the parameter abc refers to another String. foo is not modified and still points to the same string.
    In Func2 you pass a reference to foo, so when you assign abc a new value (i.e. a reference to another string), you are really assigning foo a new value.

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

Sidebar

Related Questions

I've been mostly working with VB.Net for over a year and just noticed this
I'm using protobuf-net r278 in C#, and I just noticed that if I have
Just noticed in ByteArrayOutputStream , the toByteArray() is declared as, public synchronized byte toByteArray()[];
I just noticed that java.beans.Introspector getBeanInfo does not pickup any superinterface's properties. Example: public
I just noticed this about a week ago. I'm storing data about the current
I just noticed a new term pimpl idiom, what's the difference between this idiom
i have just noticed something strange in some asp.net markup. I have a standard
i just noticed the guard method/class mentioned in this question and i don't really
I just noticed that using the .NET HttpWebRequest , I wasn't getting gzip'd contents
I just noticed on string they have a lot of extension methods that I

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.