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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T13:10:47+00:00 2026-06-09T13:10:47+00:00

Please consider this class: public static class Age { public static readonly string F1

  • 0

Please consider this class:

public static class Age
{    
    public static readonly string F1 = "18-25";
    public static readonly string F2 = "26-35";
    public static readonly string F3 = "36-45";
    public static readonly string F4 = "46-55";
}

I wanto to write a function that get “F1” and return “18-25”.for example

private string GetValue(string PropertyName)
....

How can I do it?

  • 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-09T13:10:49+00:00Added an answer on June 9, 2026 at 1:10 pm

    You can simply use SWITCH statement to perform above task:

    public static string GetValue(string PropertyName)
    {
        switch (PropertyName)
        {
            case "F1":
                return Age.F1;
            case "F2":
                return Age.F2;
            case "F3":
                return Age.F3;
            case "F4":
                return Age.F4;
            default:
                return string.Empty;
        }
    }
    

    Using Reflection, you can do like this:

    public static string GetValueUsingReflection(string propertyName)
    {
        var field = typeof(Age).GetField(propertyName, BindingFlags.Public | BindingFlags.Static);
        var fieldValue = field != null ? (string)field.GetValue(null) : string.Empty;
        return fieldValue;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

please consider this code : 1)public static class MyClass 2){ 3) public static DateTime
Please consider this class: class A { public: //public in this example string a1;
Please consider this -probably poorly written- example : class Command; class Command : public
Please consider this example class: [Serializable] public class SomeClass { private DateTime _SomeDateTime; public
please consider these files: p.h: #ifndef _p_h_ #define _p_h_ class p{ public: static void
Please Consider this scenario: We have a base class called clsMain : class clsMain
Please consider the following code: class Abase{}; class A1:public Abase{}; class A2:public A1{}; //etc
Please consider these types: struct X { static std::string fullyQualifiedName(); }; struct A {
Consider this demo program: #include <stdio.h> class Base { public: virtual int f(int) =0;
Please pardon me for a n00bish question. Please consider the following code: public class

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.