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

I have a simple code fragment in JS working with prototype inheritance. function object(o)
I have a small program to demonstrate simple inheritance. I am defining a Dog
I have an issue with mongoid inheritance. I have a Zipcode with inherits from
I have a simple inheritance in my model. The class of an entity is
I have a simple basic question about C# and inheritance. In the below example,
I have a custom Javascript class (created using John Resig's Simple Javascript Inheritance ).
I am using John Resig's Simple JavaScript Inheritance and have run into an issue
Given a simple inheritance hierarchy: Person -> Student, Teacher, Staff Say I have a
I'm playing around with some classes and interfaces, and have developed a simple method
I have a simple inheritance hierarchy of py scripts say Cat and CoolCat and

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.