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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T10:27:11+00:00 2026-05-26T10:27:11+00:00

I have two lists of strings. One is object friendly name and other one

  • 0

I have two lists of strings. One is object friendly name and other one is object class name.

"Car","Animal","Plane"

"MachineClass","AnimalClass","FlyClass".

I use friendly names to show user input and class names to dynamically create class instances by using reflection, so i need both lists and like you can see “Car” as friendly name can be bound to “Machine.cs”.

I need some more creative way of working and translating both of these lists rather than using switch statement which converts from one string to other, those lists have numerous items and i can make small spelling which will cause error. Moreover sometimes, i send string of test name for evaluation whereas same problem with spellings can apply there.

I tried to think about using enums but still digits doesn’t ring a bell for conversions between both lists.

  • 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-26T10:27:12+00:00Added an answer on May 26, 2026 at 10:27 am
     public enum Things
     {
         Car,
         Animal,
         Plane
     }
    
     var dict = new Dictionary<Things, string> {
          { Things.Car, "MachineClass" },
          { Things.Animal, "AnimalClass" },
          { Things.Plane, "FlyClass" } };
    
     string classname = dict[Things.Plane]; // FlyClass
    

    Now if you wanted real types, that you can instantiate:

    var realtypes = dict.ToDictionary(
            kvp => kvp.Key,
            kvp => System.Type.GetType("Namespace." + kvp.Value));
    

    A fully working example is on http://ideone.com/TTuBP:

    using System;
    using System.Collections.Generic;
    using System.Linq;
    
    //public interface IThing {} 
    public class MachineClass /* : IThing */ { }
    public class AnimalClass  /* : IThing */ { }
    public class Plane        /* : IThing */ { }
    
    public class Program
    {
         public enum Things
         {
             Car,
             Animal,
             Plane
         }
    
         private static readonly IDictionary<Things, string> _classNameMap = 
             new Dictionary<Things, string> {
              { Things.Car,    "MachineClass" },
              { Things.Animal, "AnimalClass"  },
              { Things.Plane,  "FlyClass"     }  };
    
         public static void Main(string[] args)
         {
             var realtypes = _classNameMap.ToDictionary(
                     kvp => kvp.Key,
                     kvp => System.Type.GetType(/*"Namespace." +*/ kvp.Value));
    
             Type dynamicType = realtypes[Things.Plane]; // typeof(Namespace.FlyClass)
    
             foreach (var realtype in realtypes)
                 Console.WriteLine("{0}, class {1}", 
                         realtype.Key, realtype.Value);
         }
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have two dropdown lists (one dynamically populated, the other not) that determine the
I have two comboBoxes, one that lists the 7 days of the week and
Say I have two lists: List<CanidateSkill> canidateSkills; List<JobDesiredSkill> desiredSkills; class CanidateSkill { public Guid
I have an object with two arrays of strings. The object is data bound
I have two lists. The first contains names (string) the second contains filters (object).
I have two lists of contacts, and I want to replace one with another
I have two lists comprised of different complex-objects, and each one is from 2
I have two methods that do the same thing, one works with a Dictionary<object,
I have a list like this Dim emailList as new List(Of String) emailList.Add(one@domain.com) emailList.Add(two@domain.com)
Ok so I have two lists in C# List<Attribute> attributes = new List<Attribute>(); List<string>

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.