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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T17:20:03+00:00 2026-05-10T17:20:03+00:00

I have a class like the following: public class DropDownControl<T, Key, Value> : BaseControl

  • 0

I have a class like the following:

public class DropDownControl<T, Key, Value> : BaseControl     where Key: IComparable {     private IEnumerable<T> mEnumerator;     private Func<T, Key> mGetKey;     private Func<T, Value> mGetValue;     private Func<Key, bool> mIsKeyInCollection;      public DropDownControl(string name, IEnumerable<T> enumerator, Func<T, Key> getKey, Func<T, Value> getValue, Func<Key, bool> isKeyInCollection)         : base(name)     {         mEnumerator = enumerator;         mGetKey = getKey;         mGetValue = getValue;          mIsKeyInCollection = isKeyInCollection;     } 

And I want to add a convenience function for Dictionaries (because they support all operations efficiently on their own).

But the problem is that such a constructor would only specify Key and Value but not T directly, but T is just KeyValuePair. Is there a way to tell the compiler for this constructor T is KeyValuePair, like:

public DropDownControl<KeyValuePair<Key, Value>>(string name, IDictionary<Key, Value> dict) { ... } 

Currently I use a static Create function as workaround, but I would like a direct constructor better.

public static DropDownControl<KeyValuePair<DKey, DValue>, DKey, DValue> Create<DKey, DValue>(string name, IDictionary<DKey, DValue> dictionary)             where DKey: IComparable         {             return new DropDownControl<KeyValuePair<DKey, DValue>, DKey, DValue>(name, dictionary, kvp => kvp.Key, kvp => kvp.Value, key => dictionary.ContainsKey(key));         } 
  • 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-10T17:20:04+00:00Added an answer on May 10, 2026 at 5:20 pm

    No, basically. The static method in a non-generic class (such as DropDownControl [no <>]) is the best approach, as you should be able to use type-inference when you call Create() – i.e.

    var control = DropDownControl.Create(name, dictionary); 

    C# 3.0 helps here both via ‘var’ (very welcome here) and by the much-improved generic type inference rules. In some (more general) case, another similar option is an extension method, but an extension method to create a very specific control from a dictionary doesn’t feel very natural – I’d use a non-extension method.

    Something like:

    public static class DropDownControl {     public static DropDownControl<KeyValuePair<TKey,TValue>, TKey, TValue>             Create<TKey,TValue>(IDictionary<TKey, TValue> value, string name)     where TKey : IComparable     {         return new DropDownControl<KeyValuePair<TKey, TValue>, TKey, TValue>             (name, value, pair => pair.Key, pair => pair.Value,             key => value.ContainsKey(key)         );     } } 

    Another option is inheritance, but I don’t like it much…

    public class DropDownControl<TKey, TValue> :     DropDownControl<KeyValuePair<TKey, TValue>, TKey, TValue>     where TKey : IComparable {     public DropDownControl(IDictionary<TKey, TValue> lookup, string name)         : base(name, lookup, pair => pair.Key, pair => pair.Value,             key => lookup.ContainsKey(key)) { } } 

    This adds complexity and reduces your flexibility… I wouldn’t do this…

    Overall, it sounds like you want to be working with just IDictionary<,> – I wonder if you can’t simplify your control to just use this, and force non-dictionary callers to wrap themselves in an IDictionary<,> facade?

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

Sidebar

Ask A Question

Stats

  • Questions 103k
  • Answers 103k
  • 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 This works on Oracle 10g: select id, 'Value' || n… May 11, 2026 at 8:29 pm
  • Editorial Team
    Editorial Team added an answer There is no selected value because: 1) there are no… May 11, 2026 at 8:29 pm
  • Editorial Team
    Editorial Team added an answer It's used to specify, in a dynamic way, what the… May 11, 2026 at 8:29 pm

Related Questions

Lets consider that I have a public property called AvatarSize like the following, public
I have a base class that has an abstract getType() method. I want subclasses
With reference to this programming game I am currently building. I have a Class
Is there a way in Java to have a map where the type parameter

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.