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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T08:46:30+00:00 2026-05-13T08:46:30+00:00

For the sake of this question, here is my generic class. [ComVisible(true)] public class

  • 0

For the sake of this question, here is my generic class.

[ComVisible(true)]
public class HtmlTable<T> where T : class
{
    List<T> listToConvert;

    public HtmlTable(List<T> listToConvert)
    {
        this.listToConvert = listToConvert;
    }
}

Essentially, this class is responsibly for converting a List of class T to an HTML table (I’ve omitted the generating sections).The error I get is

Generic classes may not be exposes to COM.

I have read several posts regarding the issue, however I don’t really understand them. What needs to be changed/added in order to be able to use this class?

Thank you.

  • 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-13T08:46:31+00:00Added an answer on May 13, 2026 at 8:46 am

    COM has no concept of Generics, therefore Generic classes can’t be exposed to COM.

    What you can do is create a Generic super type, and then create Non-Generic specific implementations of that Generic super type to expose to COM.

    A quick example:

    public class HtmlTable<T> where T : class 
    { 
        List<T> listToConvert; 
    
        public HtmlTable(List<T> listToConvert) 
        { 
            this.listToConvert = listToConvert; 
        } 
    } 
    
    [ComVisible(true)]
    public class StringHtmlTable : HtmlTable<String>
    {
        // implementation goes here
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This question is just for a sake of knowledge. I don't have any practical
This is heavily simplified for the sake of the question. Say I have a
For the sake of this question, I don't care about the difference between stubs,
This is a design/algorithm question. Here's the outline of my scenario: I have a
For the sake of this question, let's suppose this table structure: People: PersonID int
this my first question on here. I hope someone can help. It is to
A question purely for curiosity's sake. This is obviously invalid syntax: foo = {}
I've written a short and incomplete example (for the sake of this question) that
This question may be a bit specific for stackoverflow, but here it is. I
I have this question here (as well other quesrtions on SO), and the Apple

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.