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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T16:38:55+00:00 2026-05-25T16:38:55+00:00

Lately I have been spending a lot of time ensuring that my objects all

  • 0

Lately I have been spending a lot of time ensuring that my objects all had names that would allow easy identification of their meaning. I have also discovered that you can use objects in a one time fashion like so:

_ProfileList = (New RegistryManager).GetAllProfiles()

As opposed to creating a named object.

Is there a reason not to do this when all you want is one time access to an object? If anyone knows the pro’s and cons that would be great.

PS: It is VB.NET code but either it or C# will be fine if providing examples

  • 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-25T16:38:56+00:00Added an answer on May 25, 2026 at 4:38 pm

    That is explicit – it just isn’t stored in a variable (indeed, the object never has a “name” – only local variables/fields have names). If you don’t need the object more than once, and it doesn’t make the core more complicated, then there is no real disadvantage to this. Note that if the object is IDisposable or similar, you will want a local, i.e.

    using(var manager = new RegistryManager()) {
         _ProfileList = manager.GetAllProfiles();
    }
    

    but other than that, it doesn’t care. Indeed, if you do assign to a local and use it right away, I would expect any “release” build to remove the variable completely anyway, meaning that once compiled (in release)

    var manager = new RegistryManager();
    _ProfileList = manager .GetAllProfiles();
    

    and

    _ProfileList = (new RegistryManager()).GetAllProfiles();
    

    are identical (my expectation).

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

Sidebar

Related Questions

In a Ruby project that I have been spending some time on lately, I
I am thinking about form security a lot lately. I have been told time
Lately I have been reading a lot of blog topics about big sites(facebook, twitter,
I have lately been developing a very simple app for iOS with PhoneGap. All
I am developing a project that lately have been taking off with increased popularity.
I deal with simulation data and have been using matplotlib a lot lately and
Relatively new to working with CR. Have lately been converting a lot of old
lately I have been writing a lot of tiny plugins for my web projects
Lately I have been finding that some of the ColdFusion applications on my production
I've been spending some time lately getting acquainted with Smalltalk and Seaside. I'm coming

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.