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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T17:14:08+00:00 2026-05-13T17:14:08+00:00

I am creating a generic class to hold widgets and I am having trouble

  • 0

I am creating a generic class to hold widgets and I am having trouble implementing the contains method:

public class WidgetBox<A,B,C>
{
    public bool ContainsB(B b)
    {
        // Iterating thru a collection of B's
        if( b == iteratorB )  // Compiler error.
        ...
    }
}

Error: Operator ‘==’ cannot be applied to operands of type ‘V’ and ‘V’

If I can not compare types, how am I to implement contains? How do dictionaries, lists, and all of the other generic containers do it??

  • 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-13T17:14:09+00:00Added an answer on May 13, 2026 at 5:14 pm

    You have a few options here

    The first is to use Object.Equals:

    if(b.Equals(iteratorB)) {
        // do stuff
    }
    

    Be careful using this option; if B does not override Object.Equals then the default comparsion is reference equality when B is a reference type and value equality when B is a value type. This might not be the behavior that you are seeking and is why without additional information I would consider one of the next two options.

    The second is to add a constraint that B is IComparable:

    public class WidgetBox<A, B, C> where B : IComparable 
    

    so that

    if(b.CompareTo(iteratorB) == 0) {
        // do stuff
    }
    

    A third is to require an IEqualityComparer<B> be passed to the constructor of WidgetBox

    public class WidgetBox<A, B, C> {
        IEqualityComparer<B> _comparer;
        public WidgetBox(IEqualityComparer<B> comparer) {
            _comparer = comparer;
        }
        // details elided
    }
    

    Then:

    if(_comparer.Equals(b, iteratorB)) {
        // do stuff
    }
    

    With this last option you can provide an overload that defaults to EqualityComparer<T>.Default:

    public WidgetBox() : this(EqualityComparer<T>.Default) { }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am creating a custom generic class: class Widget< T1, T2> { ... public
I'm creating a generic class and in one of the methods I need to
I'm creating a generic list class that has a member of type Array(Array of
In a proof-of-concept project I'm working on, I have a generic abstract class that
I'm having problems trying to pass an Integer object from a driver class as
I have created a RIA services class library project and things are not going
I've read the official documentation and I understand what class references are but I
I saw some code on an unrelated question but it got me curious as
I'm looking to create a singleton in Delphi. I've done this before using older

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.