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

The Archive Base Latest Questions

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

I have a Data<TData, TKey> class that basically wraps around a dictionary. I want

  • 0

I have a Data<TData, TKey> class that basically wraps around a dictionary. I want to have a constructor that can take another Data class, copy the values, and take a new key.

C# generics seem to prevent me from doing this however, because the Data class does not have to have the same type of key. All I care about is copying the values and then using a new key for a dictionary.

public class Data<TData, TKey>
{
    private Dictionary<TKey, List<TData>> keyedData;
    public delegate TKey Key(TData row);

    public Data(Data<T,K> data, Key keyDelegate, string keyName)
            : this(data.Values, keyDelegate, keyName)
    {   
    }
}

The Data<T,K> will not work, of course. If the constructor takes Data<TData, TKey>, though, it forces both the passed in class and the new class to have the same type key. They likely will not have the same type key. There should be a way to pass in Data<TData,?> as one would in Java.

  • 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-25T02:59:11+00:00Added an answer on May 25, 2026 at 2:59 am

    Perhaps something like…

    public interface IData<TData>
    {
        IEnumerable<TData> Values { get; }
    }
    
    public class Data<TData, TKey> : IData<TData>
    {
        private Dictionary<TKey, List<TData>> keyedData;
        public delegate TKey Key(TData row);
    
        public Data(IData<TData> data, Key keyDelegate, string keyName)
                : this(data.Values, keyDelegate, keyName)
        {
            //...
        }
    }
    

    Alternatively, you could make a true generic method to deal with it.

    public class Data<TData, TKey>
    {
        //...
    
        public void Populate<TOtherKey>(Data<TData, TOtherKey> otherData)
        {
            // copy otherData.Values into my values
        }
    }
    

    Then the consumer would do something like:

    Data<DataType, Key1> data1 = new Data<DataType, Key2>(/*blah blah*/);
    Data<DataType, Key2> data2 = new Data<DataType, Key2>(/*blah blah*/).Populate(data1);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Say I want to model a system where a piece of data can have
I have a class that represents some file data. The file contains some headers.
I have data that looks like CUSTOMER, CUSTOMER_ID, PRODUCT ABC INC 1 XYX ABC
I have data from a table in a database (string) that contain text and
I have data that needs to be executed on a certain background thread. I
I have data that looks like this: entities id name 1 Apple 2 Orange
I have data in an MYSQL database that looks like this: Project Date Time
I have a project where I'm trying to populate some data in a constructor:
Let's say I have a tab-delimited text file that contains data arranged in columns
I have created a BinaryTreeNode<T> class and then creating Add(T data) method for BinaryTree<T>

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.