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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T15:45:44+00:00 2026-06-11T15:45:44+00:00

I hava a class like this: public class tbl050701_1391_Fields { public static readonly string

  • 0

I hava a class like this:

public class tbl050701_1391_Fields
{
    public static readonly string StateName = "State Name";
    public static readonly string StateCode = "State Code";
    public static readonly string AreaName = "Area Name";
    public static readonly string AreaCode = "Area Code";
    public static readonly string Dore = "Period";
    public static readonly string Year = "Year";
}

I want to write some statement that returns a Dictionary<string, string> that has these values:

Key                            Value
--------------------------------------------
"StateName"                    "State Name"
"StateCode"                    "State Code"
"AreaName"                     "Area Name"
"Dore"                         "Period"
"Year"                         "Year"

I have this code for getting one property value:

public static string GetValueUsingReflection(object obj, string propertyName)
{
    var field = obj.GetType().GetField(propertyName, BindingFlags.Public | BindingFlags.Static);
    var fieldValue = field != null ? (string)field.GetValue(null) : string.Empty;
    return fieldValue;
}

How I can get all properties and their values?

  • 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-11T15:45:46+00:00Added an answer on June 11, 2026 at 3:45 pm

    how I can get all properties and their values?

    Well to start with, you need to distinguish between fields and properties. It looks like you’ve got fields here. So you’d want something like:

    public static Dictionary<string, string> GetFieldValues(object obj)
    {
        return obj.GetType()
                  .GetFields(BindingFlags.Public | BindingFlags.Static)
                  .Where(f => f.FieldType == typeof(string))
                  .ToDictionary(f => f.Name,
                                f => (string) f.GetValue(null));
    }
    

    Note: null parameter is necessary for GetValue for this to work since the fields are static and don’t belong to an instance of the class.

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

Sidebar

Related Questions

I hava some code like this: class LooperThread extends Thread { public Handler mHandler;
I hava a jar with a main file like this: public class StartMesekocka3D {
I hava a class with this public property Private _tickets As List(Of Ticket) Public
I hava a binary file like this : offset | size/type | Description -------+-----------+-----------------------------------------------------------
i hava a c++ method(for java,jni) like follow,when i repeat call this from java
mainMethod.java public class mainMethod{ public animalsData[] animals; public mainMethod(){ animals[this.animals.length + 1] = new
I hava a data structure that looks like this: (def conf { :devices [{:alias
Lets say I have a custom data type that looks something like this: public
I hava a class like: class SomeClass { void initFromBuffer(void* buffer,int length); void initFromString(const
I hava a Java mulithreading question. I have the following worker class: 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.