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

  • Home
  • SEARCH
  • 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 5995673
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T23:59:37+00:00 2026-05-22T23:59:37+00:00

I’m trying to create an extension method using CodeDOM. There doesn’t seem to be

  • 0

I’m trying to create an extension method using CodeDOM. There doesn’t seem to be any support for them and using ExtensionAttribute (which C# uses internally to mark extension methods) is not allowed.

It’s possible to use a trick to specify the this modifier, but how do I make the containing class static, so that the code actually compiles?

Since static is a C# concept, it’s not exposed through the CodeDOM API. And setting TypeAttributes to TypeAttributes.Abstract | TypeAttributes.Sealed | TypeAttributes.Public doesn’t work, because

an abstract class cannot be sealed or static

How do I make the extension method to compile?

  • 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-22T23:59:37+00:00Added an answer on May 22, 2026 at 11:59 pm

    I’m pretty sure you’re looking for:

    var staticClass = new CodeTypeDeclaration("Extensions")
        {
            Attributes = MemberAttributes.Public|MemberAttributes.Static
        };
    

    However, this appears not to work. Interestingly enough:

    provider.Supports(GeneratorSupport.StaticConstructors);
    // True
    
    provider.Supports(GeneratorSupport.PublicStaticMembers);
    // True
    

    But yet when you go and output it, no changes even though the Attributes property clearly changes from 0x00005002 to 0x00006003.

    Per Microsoft Connect this is not possible:

    Thanks for reporting this. Unfortunately, it doesn’t look like we can support static classes for CodeDom.

    The reason is that one of the design goals of CodeDom is to be language-independent, so that any code generated for one language can easily be generated for a different language. While static classes are used often in C#, VB does not support them. Therefore, adding support for static classes will mean that some code that can compile for C# won’t be compilable for VB, which goes against our goals.

    While we can’t act on this issue, we ask that you please continue to provide feedback in the future to help us improve.


    A dirty workaround:

    var type = new CodeTypeDeclaration("Extensions");
    type.Attributes = MemberAttributes.Public;
    type.StartDirectives.Add(
        new CodeRegionDirective(CodeRegionMode.Start, "\nstatic"));
    type.EndDirectives.Add(
        new CodeRegionDirective(CodeRegionMode.End, String.Empty));
    

    Produces:

    #region
    static
    public class Extensions
    {
    }
    #endregion
    

    Which compiles.

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

Sidebar

Related Questions

Basically, what I'm trying to create is a page of div tags, each has
I am trying to understand how to use SyndicationItem to display feed which is
I'm new to using the Perl treebuilder module for HTML parsing and can't figure
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I am trying to loop through a bunch of documents I have to put
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
We're building an app, our first using Rails 3, and we're having to build
I'm making a simple page using Google Maps API 3. My first. One marker
We are using XSLT to translate a RIXML file to XML. Our RIXML contains

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.