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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T16:51:59+00:00 2026-05-10T16:51:59+00:00

Running FxCop on my code, I get this warning: Microsoft.Maintainability : ‘FooBar.ctor is coupled

  • 0

Running FxCop on my code, I get this warning:

Microsoft.Maintainability : ‘FooBar.ctor is coupled with 99 different types from 9 different namespaces. Rewrite or refactor the method to decrease its class coupling, or consider moving the method to one of the other types it is tightly coupled with. A class coupling above 40 indicates poor maintainability, a class coupling between 40 and 30 indicates moderate maintainability, and a class coupling below 30 indicates good maintainability.

My class is a landing zone for all messages from the server. The server can send us messages of different EventArgs types:

public FooBar() {     var messageHandlers = new Dictionary<Type, Action<EventArgs>>();     messageHandlers.Add(typeof(YouHaveBeenLoggedOutEventArgs), HandleSignOut);     messageHandlers.Add(typeof(TestConnectionEventArgs), HandleConnectionTest);     // ... etc for 90 other types } 

The ‘HandleSignOut’ and ‘HandleConnectionTest’ methods have little code in them; they usually pass the work off to a function in another class.

How can I make this class better with lower coupling?

  • 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. 2026-05-10T16:52:00+00:00Added an answer on May 10, 2026 at 4:52 pm

    Have the classes that do the work register for events they’re interested in…an event broker pattern.

    class EventBroker {    private Dictionary<Type, Action<EventArgs>> messageHandlers;     void Register<T>(Action<EventArgs> subscriber) where T:EventArgs {       // may have to combine delegates if more than 1 listener       messageHandlers[typeof(T)] = subscriber;     }     void Send<T>(T e) where T:EventArgs {       var d = messageHandlers[typeof(T)];       if (d != null) {          d(e);       }    } } 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 81k
  • Answers 81k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer From my investigations, it looks like zsh performs <> substitution… May 11, 2026 at 4:27 pm
  • Editorial Team
    Editorial Team added an answer declare @baseDate datetime set @baseDate = '1 May 2005' SELECT… May 11, 2026 at 4:27 pm
  • Editorial Team
    Editorial Team added an answer I quickly put a validation function together that should do… May 11, 2026 at 4:27 pm

Related Questions

Running FxCop on my code, I get this warning: Microsoft.Maintainability : 'FooBar.ctor is coupled
I've recently started using it. However, after running it against one of my company's
FxCop must base itself on some internal dictionary. Does it use Word dictionaries if
Perhaps not a fully fledged programming quiestion, but to help drive the quality and
I'm working with a small (4 person) development team on a C# project. I've

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.