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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T22:14:33+00:00 2026-05-11T22:14:33+00:00

I have a class named baseClass. From this class I inherit a class names

  • 0

I have a class named “baseClass”.
From this class I inherit a class names “inheritedClass” (public class inheritedClass: baseClass)

The baseClass contains a public function that returns a HashSet<baseClass>. When called from the inheritedClass, the return type is obviously still HashSet<baseClass>, but I need a HashSet<inheritedClass>.

A conversion ala (HashSet<inheritedClass>)returnValue, where returnValue is of Type HashSet<baseClass> doesn’t work.

Is there a way to convert the HashSet-Type from baseClass to inheritedClass without converting each element manually?

Thanks in advance,
Frank

  • 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-11T22:14:33+00:00Added an answer on May 11, 2026 at 10:14 pm

    Do you really mean C# in the tags? HashMap is a Java type. Also it generally has two type parameters rather than one…

    In C#, generic classes are always invariant. Some interfaces will be variant in C# 4, but very few (only those which either only use the type parameter in an output positiion, e.g. IEnumerable<T>, or only use the type parameter in an input position, e.g. IComparable<T>).

    If you can provide more precise information about your situation, we’ll probably be able to help come up with a simple solution – particularly if you can use LINQ with its Cast<T>() method.

    EDIT: Okay, with HashSet<T>:

    HashSet<BaseType> baseSet = ...;
    var derivedSet = new HashSet<DerivedType>(baseSet.Cast<DerivedType>());
    

    Note that even with C# 4 this would be necessary because the compiler doesn’t know that every value in baseSet is an instance of DerivedType – there has to be an execution-time check. The reverse (creating a HashSet<BaseType> from a HashSet<DerivedType>) would work in C# 4.

    FURTHER EDIT: If you just want to use UnionWith, that doesn’t require a HashSet<DerivedType> – it requires an IEnumerable<DerivedType>. I suggest you do:

    HashSet<BaseType> baseSet = ...;
    HashSet<DerivedType> derivedSet = ...;
    
    derivedSet.UnionWith(baseSet.Cast<DerivedType>());
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

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

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

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

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

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer See Change server log file name and location in the… May 12, 2026 at 4:50 pm
  • Editorial Team
    Editorial Team added an answer Note that my answer is Maven2 oriented, so I am… May 12, 2026 at 4:50 pm
  • Editorial Team
    Editorial Team added an answer Don't fall into the trap of thinking that having to… May 12, 2026 at 4:50 pm

Related Questions

I will choose Java as an example, most people know it, though every other
I have extended the ActiveRecord::Base class as follows: lib/activerecord_ext.rb: class ActiveRecord::Base named_scope( :recent, :conditions
I have a large .NET remoting project using the 2.0 framework. The server's API
Consider this... I am writing a class named Cache which will accept either a

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.