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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T00:49:50+00:00 2026-05-11T00:49:50+00:00

This is really stumping me today. I’m sure its not that hard, but I

  • 0

This is really stumping me today. I’m sure its not that hard, but I have a System.Reflection.PropertyInfo object. I want to set its value based on the result of a database lookup (think ORM, mapping a column back to a property).

My problem is if the DB returned value is DBNull, I just want to set the property value to its default, the same as calling:

value = default(T);  // where T is the type of the property. 

However, the default() method won’t compile if you give it a Type, which is what I have:

object myObj = ???; // doesn't really matter. some arbitrary class. PropertyInfo myPropInf = ???; // the reflection data for a property on the myObj object. myPropInf.SetValue(myObj, default(myPropInf.PropertyType), null); 

The above doesn’t compile. default(Type) is invalid. I also thought about doing:

object myObj = ???; PropertyInfo myPropInf = ???; myPropInf.SetValue(myObj, Activator.CreateInstance(myPropInf.PropertyType), null); 

However, if the Type is string, that would assign the value ‘new String()’, but I really want ‘null’, which is what ‘default(string)’ would return.

So what am I missing here? I suppose a really hacky way would be to create a new instance of myObj’s Type and copy the property over, but that just seems stupid…

object myObj = ???; PropertyInfo  myPropInf = ???; var blank = Activator.CreateInstance(myObj.GetType()); object defaultValue = myPropInf.GetValue(blank, null); myPropInf.SetValue(myObj, defaultValue, null); 

I’d rather not waste the memory to make a whole new instance, just to get the default for the property though. Seems very wasteful.

Any ideas?

  • 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. 2026-05-11T00:49:51+00:00Added an answer on May 11, 2026 at 12:49 am

    I believe if you just do

    prop.SetValue(obj,null,null); 

    If it’s a valuetype, it’ll set it to the default value, if it’s a reference type, it’ll set it to null.

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

Sidebar

Related Questions

This is really stumping me. The process works fine if I go about it
This has been stumping me for a few days now. I have a stored
I am having an issue that is stumping me. I have a relatively simple
This really is a noobish question, but I honestly don't know how to solve
Is this really the expected behavior? I'm using the standard T4 POCO templates (but
This really has me scratching my head. Namely because it only happens in IE,
This really isn't so much an answerable question as a 'What do you think'
This is really confusing me, I would appreciate if anyone could help me out.
Is this really the easiest way how to inject a property in the controller
I need to create a thumbnail image with transparent rounded corners. Before this requirement

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.