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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T08:47:27+00:00 2026-05-18T08:47:27+00:00

I have an issue with FxCop and the warning: Abstract types should not have

  • 0

I have an issue with FxCop and the warning: Abstract types should not have constructors.

This is being displayed for a number of abstract classes (possibly all, I haven’t checked). When I look most of them have no new method so I assume it’s the complier adding a default one. So to remove it I add a private default constuctor (Private Sub New()), this then means all the inherting classes fail to build with the error:
Class 'InheritingClass' has no accessible 'Sub New' and cannot be inherited.

This seems odd as FxCop requests no public constructor, but when I remove it the build fails.

  • 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-18T08:47:27+00:00Added an answer on May 18, 2026 at 8:47 am

    Try adding a protected, parameterless constructor to the abstract class instead.

    When you don’t provide a constructor, the compiler adds a public, parameterless one for you. Clearly, it isn’t appropriate for an abstract class to have public constructors since they are effectively protected anyway – constructors on abstract types can at best be called by subclasses (that’s the whole point of an abstract type – it can’t be instantiated ‘vanilla’). This design flaw is what causes FxCop to complain.

    On the other hand, the step you took to fix the issue was too extreme; classes (abstract or not) that have only private constructors are not subclassable in practice (except by a nested class) – there is no implicit or explicit base(...) constructor-call that could possibly work in a derived class’s constructor.

    EDIT: I like the way this MSDN page puts it:

    In the example above abstract type has
    a public constructor, which can
    confuse users. They see the public
    constructor, but do not understand why
    they are unable to create the type.

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

Sidebar

Related Questions

No related questions found

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.