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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T16:33:45+00:00 2026-06-06T16:33:45+00:00

Basic question here – I have many lines of code that look something like:

  • 0

Basic question here – I have many lines of code that look something like:

var a = (long_expression == null) ? null : long_expression.Method();

Similar lines repeat a lot in this function. long_expression is different every time. I am trying to find a way to avoid repeating long_expression, but keeping this compact. Something like the opposite of operator ??. For the moment I’m considering just giving in and putting it on multiple lines like:

var temp = long_expression;
var a = (temp == null) ? null : temp.Method();

But I was curious if there is some clever syntax I don’t know about that would make this more concise.

  • 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-06-06T16:33:47+00:00Added an answer on June 6, 2026 at 4:33 pm

    Well, you could use an extension method like this:

    public static TResult NullOr<TSource, TResult>(this TSource source,
        Func<TSource, TResult> func) where TSource : class where TResult : class
    {
        return source == null ? null : func(source);
    }
    

    Then:

    var a = some_long_expression.NullOr(x => x.Method());
    

    Or (depending on your version of C#)

    var a = some_long_expression.NullOr(Foo.Method);
    

    where Foo is the type of some_long_expression.

    I don’t think I would do this though. I’d just use the two line version. It’s simpler and less clever – and while “clever” is fun for Stack Overflow, it’s not usually a good idea for real code.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Rather basic question here guys. Basically I have code like this: public SuperPanel() {
Really basic question here: I've seen a bunch of CoreAudio code that uses memset
I'm just getting started in F# and have a basic question. Here's the code:
I have a basic question here. I know that dealloc will be called when
I have a basic Android question here: I have a main.xml layout that loads
I have a very basic question. I would like to know if here is
This is a very basic question...quite embarassing, but here goes: I have a Stopwatch
I'm sure that this is an extremely basic question but here goes anyway! I
Really basic question here. So I'm told that a dot . matches any character
Very basic question here (I've just started with Python). I have a list object.

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.