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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T08:57:21+00:00 2026-05-26T08:57:21+00:00

I need to declare a variable inside an if statement. Then I will use

  • 0

I need to declare a variable inside an if statement. Then I will use it on the outside. But as far as I know, there are no external variables in C#. But I need to do this.

I have two classes both derived from one class.

Base class: Operand
Derived classes: NormalOperand SpecialOperand

bool normal

Declared somewhere

if(normal)
    NormalOperand o = stack.Pop() as NormalOperand;
else
    SpecialOperand o = stack.Pop() as SpecialOperand;

I don’t want to deal this differences below. Is there any hack to do that? Or do I have to deal with it everywhere I do something related to this?

  • 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-26T08:57:22+00:00Added an answer on May 26, 2026 at 8:57 am

    I don’t see the issue, just declare o as the base class Operand.

    Operand o = stack.Pop(); // add as Operand if needed
    

    Later if you need to know the type of o (using virtual/abstract methods on base class should avoid this) then use:

    if (o is NormalOperand)
    {
        // TODO: maybe check for null
        (o as NormalOperand).NormalSpecificMethod();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to declare the query variable outside the switch statement that way I
I need to declare 3d array variable but can't. int[][][] ary = new int[5][2][];
Outside of a for I declare a variable using var list; . I use
I'm in need to declare a local variable and test for it inside of
Is there any way to declare a variable at file scope (which will be
I'm trying to declare a variable inside an if statement. If the result of
I think in this case there is no need to declare a public constructor
i have two class i need to declare a variable common to both the
I need to declare an enum variable as a class member and need to
I have been trying to declare variables inside a For loop for quite some

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.