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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T06:20:13+00:00 2026-05-12T06:20:13+00:00

What would be the most efficient way to instanciate an object according to a

  • 0

What would be the most efficient way to instanciate an object according to a generic type passed to a Factory class, for instance:

public class LoggerFactory
{
    public static ILogger<T> Create<T>()
    {
        // Switch Statement?
        // Generic Dictionary?
        // EX.: if "T" is of type "string": return (ILogger<T>)new StringLogger();
    }
}

How would you do it? Which branching statement? etc…

  • 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-12T06:20:14+00:00Added an answer on May 12, 2026 at 6:20 am

    I think it’s best to keep it simple, perhaps something like this:

    public static class LoggerFactory
    {
        static readonly Dictionary<Type, Type> loggers = new Dictionary<Type, Type>();
    
        public static void AddLoggerProvider<T, TLogger>() where TLogger : ILogger<T>, new()
        {
            loggers.Add(typeof(T), typeof(TLogger));
        }
    
        public static ILogger<T> CreateLogger<T>()
        {
            //implement some error checking here
            Type tLogger = loggers[typeof(T)];
    
            ILogger<T> logger = (ILogger<T>) Activator.CreateInstance(tLogger);
    
            return logger;
        }
    }
    

    You just call the AddLoggerProvider for each type you want to support, can be extended at runtime, it ensures you definetly add an implementation of the interface to the library and not some object, isn’t very fast because of the Activator, but creating a logger wont likely be a bottleneck anyway. Hope it looks okay.

    Usage:

    // initialize somewhere
    LoggerFactory.AddLoggerProvider<String, StringLogger>();
    LoggerFactory.AddLoggerProvider<Exception, ExceptionLogger>();
    // etc..
    
    ILogger<string> stringLogger = LoggerFactory.CreateLogger<string>();
    

    Note: each ILogger<T> requires a parameterless constructor for the Activator, but that too is ensured with the new() generic constraint in the add method.

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

Sidebar

Related Questions

What would be the most efficient way of counting the number of times a
I have this string: B82V16814133260 what would be the most efficient way to get
If I have two associative arrays, what would be the most efficient way of
Would anyone please be able to tell me the most efficient way to compare
I would like to ask you what's the most efficient way for checking user's
What would be the most elegant and efficient way of finding/returning the first list
What would be the most efficient way to read a UInt32 value from an
What would be the most efficient way to set customized formatting of the column
Wondering what would be the most efficient way to do the following. Game play.
I am curious with current technology, what would be the most efficient way to

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.