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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T18:17:24+00:00 2026-06-08T18:17:24+00:00

How can I get the property value type of each property in a class?

  • 0

How can I get the property value type of each property in a class?

this.GetType().GetProperties().ToList().ForEach(p => {
    switch(typeof(p.GetValue(this, null))) {
        case float:
            ...
            break;
        case string:
            ...
            break;
    }
});

This produces the error Cannot resolve symbol p

SOLUTION: I ended up going with LINQ to SQL. Just cleaner and easier to deal :). Thanks Jon

  • 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-08T18:17:25+00:00Added an answer on June 8, 2026 at 6:17 pm

    I don’t get that as a problem – I get:

    Test.cs(12,29): error CS1026: ) expected
    Test.cs(12,42): error CS1514: { expected
    Test.cs(12,42): error CS1525: Invalid expression term ')'
    Test.cs(12,44): error CS1002: ; expected
    Test.cs(13,9): error CS1525: Invalid expression term 'case'
    Test.cs(13,19): error CS1001: Identifier expected
    Test.cs(13,19): error CS1525: Invalid expression term ':'
    Test.cs(13,20): error CS1002: ; expected
    Test.cs(15,9): error CS1525: Invalid expression term 'case'
    Test.cs(15,20): error CS1001: Identifier expected
    Test.cs(15,20): error CS1525: Invalid expression term ':'
    Test.cs(15,21): error CS1002: ; expected
    

    You can’t switch on types. Using ForEach like that in general is fine though.

    Sample code:

    using System;
    using System.Linq;
    
    class Test
    {
        public string Foo { get; set; }    
        public int Bar { get; set; }
    
        public void DumpProperties()
        {
            this.GetType().GetProperties().ToList()
                .ForEach(p => Console.WriteLine("{0}: {1}", p.Name,
                                                p.GetValue(this, null)));
        }
    
        static void Main()
        {
            new Test { Foo = "Hi", Bar = 20 }.DumpProperties();
        }
    }
    

    Now admittedly I generally wouldn’t use ForEach here – I’d just use a foreach loop:

    foreach (var property in GetType().GetProperties())
    {
        // Use property
    }
    

    Personally I think that’s cleaner, simpler to read, and easier to debug.

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

Sidebar

Related Questions

my string is: [{property:surname,direction:ASC}] can I get GSON to deserialise this, without adding to
EDIT: I'd better rephrase: How can I shift the GET-implementation of a Class property
I have an attribute declared on property. How can I get the property name
How can I get the state only for property of an entity not for
I can't get rid of compiler warning when I define property inside protocol. Strange
How can you get the HttpMethod from the System.ServiceModel.Channels.RequestContext ? The HttpMethod property of
I'm trying to animate a height property, when hovering, but I can't get it
Can I exclude the valudation rule for the ID property? Right now I get
When we define a property like public string Name {get; set;} dot net can
Possible Duplicate: Can I set a property value with Reflection? How do I set

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.