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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T07:56:26+00:00 2026-06-05T07:56:26+00:00

Is it possible to get the name of a variable that points to a

  • 0

Is it possible to get the name of a variable that points to a reference? Take the example below:

private void FillArray(int[] array, int count)
{
    array = new int[count];

    for (int i = 0; i < array.Length; i++)
    {
        array[i] = i;
    }

    Debug.WriteLine("Array {0} is now filled up with {1} values", array.Name, count);
}

There is no property Name for the array that is going to be used in the above method. I know that a workaround would be adding another parameter as string and assign the name to it, but how to do this programitically? Also I know I can make my own implementation, but I am interested to know the answer to this particular question!

  • 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-05T07:56:27+00:00Added an answer on June 5, 2026 at 7:56 am

    No, the reference has no name.

    It’s not the variable that is sent to the method, it’s the reference that was the value of the variable.

    If there even was a variable, that is. The method could just as well be called with a newly created array, so there would be no variable at all:

    FillArray(new int[4], 4)
    

    Also, your method will ditch the array that is sent into it and create a new array, so you can just as well call it without any array at all:

    FillArray(null, 4)
    

    Your method doesn’t change the variable to reference the new array, it just throws away the new array. You would need to use the ref or out keyword for that:

    private void FillArray(out int[] array, int count) {
      array = new int[count];
      for (int i = 0; i < array.Length; i++) {
        array[i] = i;
      }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In PHP, is it possible to get the file name of the script that
Is it possible to get the original variable name of a variable passed to
Is it possible to get the parameter name (where I have parmName below)? Or
Possible Duplicate: c# - How do you get a variable’s name as it was
Possible Duplicates: PHP: Get name of variable passed as argument How to get a
Using Java Reflection, is it possible to get the name of a local variable?
Is it possible to get the variable name using which the object was called
Possible Duplicate: get name of current PHP script in include file Can an included
Hey all, I'm just wondering if it is possible to get the name of
Does anybody know, is it possible and how can I get name of user

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.