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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T15:37:24+00:00 2026-05-11T15:37:24+00:00

I’d like to know if it is possible to use an expression as a

  • 0

I’d like to know if it is possible to use an expression as a variable/parameter in C#. I would like to do something like this:

int x = 0; public void g() {    bool greaterThan = f('x>2');    bool lessThan = f('x<2'); } public bool f(Expression expression) {    if(expression)        return true;    else        return false; } 

Here’s what I don’t want to do:

int x = 0; public void g() {     bool greaterThan = f(x, '<', 2); }  public bool f(int x, char c, int y) {     if(c == '<')        return x < y;     if(c == '>')        return x > y; } 

Really what I’m getting at is a way to get around using a switch or series of if statements for each of: < > <= >= == !=. Is there a way to do it?

Edit: Suppose that the expression is a string, like ‘x < 2’. Is there a way to go from the string to a predicate without using a series of if statements on the condition?

  • 1 1 Answer
  • 1 View
  • 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. 2026-05-11T15:37:25+00:00Added an answer on May 11, 2026 at 3:37 pm

    Its very possible, just not in the exact syntax you have.

    int x = 0; public void g() {    bool greaterThan = f(i => i > 2, x);    bool lessThan = f(i => i < 2, x); } public bool f(Func<int,bool> expression, int value) {    return expression(value); } 

    Actually, this should be closer to what you want.

    int x = 0; public void g() {    bool greaterThan = f(() => x > 2);    bool lessThan = f(() => x < 2); } public bool f(Func<bool> expression) {    return expression(); } 

    Reply to Edit

    If you want be able to say f("x < 2"), it’s going to be almost impossible. Ignoring parsing it (which could get nasty), you have to capture the value of x, but its just a character to f, which makes it pretty much impossible.

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

Sidebar

Related Questions

No related questions found

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.