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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T00:46:09+00:00 2026-06-06T00:46:09+00:00

Is it possible to shorthand the code below? Essentially metaItem.Text is a string property

  • 0

Is it possible to shorthand the code below?

Essentially metaItem.Text is a string property that contains either “true” or “false” – I’m dealing with objects I have no control over here so I know it should be a boolean instead.

First, I need to check if metaItem.Text contains a value (i.e. not an empty string). If so, convert it to a boolean. Then set the Visible property of a user control (relatedLinks) to that value.

if (metaItem.Text != string.Empty)
{
    bool bShowRelatedLinks = false;
    bool.TryParse(metaItem.Text, out bShowRelatedLinks);

    if (bShowRelatedLinks)
    {
        relatedLinks.Visible = true;
    }
    else
    {
        relatedLinks.Visible = false;
    }
}

The reasons for wanting to use shorthand is that I have a bunch of these conditions to show/hide various parts of the page.

  • 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-06T00:46:11+00:00Added an answer on June 6, 2026 at 12:46 am
    bool bShowRelatedLinks = false;
    bool.TryParse(metaItem.Text, out bShowRelatedLinks);
    relatedLinks.Visible = bShowRelatedLinks;
    

    Explanation: Firstly, TryParse() can be given null (it will set out out parameter to false if parsing fails). Secondly, there’s no need for the if test when setting relatedLinks. You already have the bool value, so just assign that.

    If you’re certain that metaItem.Text is "true", "false", or null, you can simplify further:

    relatedLinks.Visible = Convert.ToBoolean(metaItem.Text);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: $(document).ready shorthand Can someone help me to understand the JS code below,
Possible Duplicate: Transact-SQL shorthand join syntax? I ran across a T-SQL script that does
i thought that elif: was the shorthand for else: if: but it's not possible
Possible Duplicate: Yield In VB.NET In C#, when writing a function that returns an
Possible Duplicate: Javascript Shorthand - What Does the '||' Operator Mean When Used in
Possible Duplicate: What does this CSS shorthand font syntax mean? I was looking at
Is it possible to use the shorthand ternary to check whether a variable is
Possible Duplicates: PHP - and / or keywords PHP shorthand syntax Quick question. I
Possible Duplicate: What does this CSS shorthand font syntax mean? I saw many people
Hey all. I have a question regarding PHP's If shorthand. Is it possible with

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.