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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T20:01:53+00:00 2026-06-12T20:01:53+00:00

I have two classes: class Car<T> { public string color { get; set; }

  • 0

I have two classes:

  class Car<T>
{
    public string color { get; set; }
    public virtual T features { get; set; }
    public virtual void TestDrive();
}
class Toyota : Car<ToyotaFeatures>
{
    public override ToyotaFeatures features { get; set; }
    public override void TestDrive()
    {
        //Logic here...
    }
}

Now i have a full string class name: “MySol.MyProj.Toyota”
I want to instantiate a class by my string name and then run TestDrive().
The problem is that when I try to run Activator.CreateInstance(null, "MySol.MyProj.Toyota");
I cannot cast it to a base class and run testDrive because it is expecting ToyotaFeatures class to be passed to it. but I just want to run TestDrive() only having a string class name.

And I don’t want to cast it to specific type. only to base type so it can decide which TestDrive() to run based on the provided string.

  • 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-06-12T20:01:54+00:00Added an answer on June 12, 2026 at 8:01 pm

    For that purposes interfaces are extra good.

    interface ITestDrivable
    {
        void TestDrive();
    }
    

    Your abstract class implements the interface:

    class Car<T> : ITestDrivable
    {
        public string Color { get; set; }
        public virtual T Features { get; set; }
        public abstract void TestDrive() { }
    }
    

    And casting comes very easy:

    ITestDrivable car = (ITestDrivable)Activator.CreateInstance(null, "MySol.MyProj.Toyota");
    car.TestDrive();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have two classes: public class RichMan { public string ID {get;set;} List<Car> _cars=new
I have two classes class A { public string something { get; set; }
I have two classes: class Player { public string Id { set; get; }
I have two classes: class Customer { public string Name { get; set; }
I have two classes: public class MultilingualString { public int Id { get; set;
I have two classes Car and Drivers : public class Car { public string
I have two classes: class Foo{ public int FooId { get; set; } ...
I have two classes: class A { public: virtual void somefunction() = 0; };
I have two classes: class Object { public: Object(); virtual void update(); virtual void
I have two classes: class Foo { public Bar SomeBar { get; set; }

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.