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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T10:35:39+00:00 2026-05-16T10:35:39+00:00

Can I somehow get a reference to the instance I am creating using object

  • 0

Can I somehow get a reference to the instance I am creating using object initialiser

var x = new TestClass
           {
                 Id = 1,
                 SomeProperty = SomeMethod(this)
           }

“this” should point to the new TestClass instance I’m creating. But it obviously refers the the instance of the class in which this code resides.

I’m not asking if this is a good way to do this.
I’m aware that I can do this like this:

var x = new TestClass {Id= x};
x.SomeProperty = SomeMethod(this);

I have a complicated scenario, in which a reference to the new instance in the object initialiser would make life easier.

Is this possible in any way?

  • 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-16T10:35:39+00:00Added an answer on May 16, 2026 at 10:35 am

    There’s no way around it, the C# specification explicitly says that “It is not possible for an object or collection initializer to refer to the object instance being initialized.”

    As for why it’s impossible, I suspect that there’s just no nice way to implement it. We want some syntactic sugar equivalent to

    var temp = new TestClass();
    temp.Id = 1;
    temp.SomeProperty = SomeMethod(temp);
    x = temp;
    

    We just need a keyword to refer to temp within the initializer, but none is easily available. We can’t use this because it already means something outside the initializer. Should SomeProperty = this.SomeMethod(this) be equivalent to temp.SomeProperty = this.SomeMethod(temp) or temp.SomeProperty = temp.SomeMethod(temp)? The second is consistent, but then what happens if we need the first?

    We could try to use x, though we can only pick a name if the new object is immediately assigned to a variable. However, we now can’t refer to the old value of x inside the initializer, doing the equivalent of temp.SomeProperty = SomeMethod(x).

    We could reuse the value keyword from property setters. This sounds good since value already stands in for the missing parameter if you consider a property getter to be syntactic sugar for a set_SomeProperty(value) method. Using it to also refer to the missing variable in the object initializer looks promising. However, we could be creating this object inside a property setter, in which case value is already being used, and we need to be able to do temp.SomeProperty = SomeMethod(value).

    It looks like we’ll have to create a new keyword just for this purpose, maybe newthis. However, this is a breaking change to the language because any code that has a variable called newthis doesn’t work any more. Microsoft generally needs a really good reason to introduce breaking changes, so it’s better to forbid access to the object being initialized.

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

Sidebar

Related Questions

I've been working all day and I somehow can't get this probably easy task
This somehow simple task is not so simple. I can get the number of
Can I get somehow(from a database or other source) a percentage of the phones
This is something I know can be done somehow , because I've done it
Using reflection you can get pretty much everything relating to a class. You can
Can I somehow disable ListView items navigation through keyboard (arrow keys), and leave navigation
Can you somehow lock an iPad to Safari and only one webpage? I've found
Can I somehow automatically add a node to a specific nodequeue when it is
Can anyone tell me, if in PostSharp, I somehow can turn on/off tracing in
looper = (0..3).cycle 20.times { puts looper.next } can I somehow find the next

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.