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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T01:13:48+00:00 2026-06-12T01:13:48+00:00

Given the following interface: public interface IFoo { bool Foo(Person a, Person b); }

  • 0

Given the following interface:

public interface IFoo
{
    bool Foo(Person a, Person b);
}

and the following two implementations of the above:

public class KungFoo : IFoo
{
    public bool Foo(Person a, Person b)
    {
        if (a.IsAmateur || b.IsAmateur) // common logic
          return true;
        return false;
    }
}

public class KongFoo : IFoo
{
    public bool Foo(Person a, Person b)
    {
        if (a.IsAmateur || b.IsAmateur) // common logic
          return false;
        return true;
    }
}

where should I place the “common logic” (as commented in the code) so it is in just one place (e.g. as a Func) and does not need to be repeated (as is the case above) for multiple implementations?

Note that the example above is very trivial but the real-life “common logic” is more complicated and the Foo() method does something useful!

I hope the question is clear (and not already been answered elsewhere – I did do a search) but feel free to probe me for more details if required.

  • 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-12T01:13:50+00:00Added an answer on June 12, 2026 at 1:13 am

    In a common abstract class:

    public interface IFoo
    {
        bool Foo(Person a, Person b);
    }
    
    public abstract class FooBase : IFoo
    {
        public virtual bool Foo(Person a, Person b)
        {
            if (a.IsAmateur || b.IsAmateur) // common logic
              return true;
            return false;
        }
    }
    
    public class KungFoo : FooBase
    {
    
    }
    
    public class KongFoo : FooBase
    {
        public override bool Foo(Person a, Person b)
        {
            // Some other logic if the common logic doesn't work for you here
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Given a base class with the following interface: public class Base { public virtual
Given the following code: public interface IExample { ... } public abstract class BaseExample:
Given the following code: public interface Selectable { public void select(); } public class
Given the following: class Base<T> {/*...*/} class Der<T>: Base<T> {/*...*/} interface Sth<T>{ IEnumerable<Base<T>> Foo
Given the following types: public interface IMyClass { } public class MyClass : IMyClass
Given the following class structure, will Bar serialize/deserialize as expected? public class Foo {
Given the following code public interface Foo<T> { T get(); } @Remote public interface
Given the following generic interface and implementing class: public interface IRepository<T> { // U
Given the following classes and interfaces class A{ @NotNull(groups=Section1.class) private String myString } interface
Given the following interface, public interface Callback<T> { <K, V> T execute(Operation<K, V> operation)

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.