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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T07:07:02+00:00 2026-05-29T07:07:02+00:00

I have some legacy code that is creating instances of classes. I have managed

  • 0

I have some legacy code that is creating instances of classes.

I have managed to wire up an IOC container to scan assemblies and create instances of them. However, I have spotted that in a configuation class specific classes may be created numerous times.

The logic basically loops over an array of class types and if it matches the one a user selected it calls CreateInstance.

This is fine but the only way I can think to provide that functionality is to pass the IOC Container around and call Resolve which will provide a new instance of the class.

I know this is seriously frowned upon but I can’t think how to make it work.

  • 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-29T07:07:04+00:00Added an answer on May 29, 2026 at 7:07 am

    Create an abstract factory which provides a layer of abstraction between the IOC container and the code requiring the new instances, this will avoid the code being littered with container dependent calls.

    For example, when using the ‘Unity Application Block’, Func<T> can be used as a factory. This Func<T> then hides the container implementation which is actually container.Resolve<T>().

    Update

    Here is an example:

    public class TestClass
    {
        readonly Func<Foo> _fooFactory;
    
        public TestClass(Func<Foo> fooFactory)
        {
            _fooFactory = fooFactory;
        }
    
        public void LoadFoo()
        {
            var foo = _fooFactory(); // This hides the call container.Resolve<Foo>()
            // Do something with foo
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have some legacy code that uses shmget/shmat/shmdt to create, attach and manage shared
We have some legacy code that needs to identify in the Page_Load which event
I have some legacy code that was used to monitor my applications cpu,memory etc
I have some legacy C code that I recently compiled on Linux. On the
We have some legacy ASP.NET code that detects if a request is secure, and
I have been working on some legacy C++ code that uses variable length structures
I have some really complicated legacy code I've been working on that crashes when
I have some legacy code that uses Interlocked.Equals to compare values. The values may
Currently I have some legacy ASP.NET 2.0 code that uses the ASP Xml web
I have the following function from some legacy code that I am maintaining. long

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.