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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T00:26:53+00:00 2026-05-14T00:26:53+00:00

I have a simple inheritance heirarchy with MyType2 inheriting from MyType1 . I have

  • 0

I have a simple inheritance heirarchy with MyType2 inheriting from MyType1.

I have an instance of MyType1, arg, passed in as an argument to a method. If arg is an instance of MyType2, then I’d like to perform some logic, transforming the instance. My code looks something like the code below.

Having to create a new local variable b feels inelegant – is there a way of achieving the same behavior without the additional local variable?

public MyType1 MyMethod(MyType1 arg) 
{
    if(arg is MyType2)
    {
        MyType2 b = arg as MyType2;
        //use b (which modifies "arg" as "b" is a reference to it)...
    }

    return arg;
}
  • 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-14T00:26:54+00:00Added an answer on May 14, 2026 at 12:26 am

    Note that the “is” and “as” is duplicating the test; either use is and then (once you know) just cast – or use as in the first place and test for null.

    Re your issue; if you only want to do one thing – then cast:

    if(arg is MyType2)
    {
        ((MyType2)arg).SomeSpecialMethod();
    }
    

    Otherwise – perhaps a virtual method (on the base-type), or just refactor the logic out into another method, so you have:

    if(arg is MyType2)
    {
        StuffThatTakesType2((MyType2)arg);
    }
    

    But persoanlly, I’d just use the extra variable:

    MyType2 whatever = arg as MyType2;
    if(whatever != null) {
        whatever.Foo = 123;
        whatever.Bar();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In C# I have an intrusive tree structure that looks like this: public abstract
i have a parent entity Service and a child ExtendedService in a SINGLE_TABLE inheritance.
I would like to start my question by stating that this is a C++
I know this is probably a really simple question but I'm having a brain
I have this code and I want to keep it elegant. I got stuck
I have an existing application (C#/Win forms). I need to add functionality to the
For a long time I have been throwing around the idea of making my
I'm experimenting with the Doctrine ORM (v1.2) for PHP. I have defined a class
So, this is the final nagging inheritance question I've had for a little bit
I am working on a very large Rails application. We initially did not use

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.