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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T22:51:21+00:00 2026-06-13T22:51:21+00:00

We have a property of type long? that gets filled with an int .

  • 0

We have a property of type long? that gets filled with an int.

This works fine when i just set the property directly obj.Value = v; but when i try and set the property through reflection info.SetValue(obj, v, null); it gives me a the following exception:

Object of type ‘System.Int32’ cannot be converted to type ‘System.Nullable`1[System.Int64]’.

This is a simplified scenario:

    class TestClass
    {
        public long? Value { get; set; }
    }

    [TestMethod]
    public void TestMethod2()
    {
        TestClass obj = new TestClass();
        Type t = obj.GetType();

        PropertyInfo info = t.GetProperty("Value");
        int v = 1;

        // This works
        obj.Value = v;

        // This does not work
        info.SetValue(obj, v, null);
    }

Why does it not work when setting the property through reflection while it works when setting the property directly?

  • 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-13T22:51:23+00:00Added an answer on June 13, 2026 at 10:51 pm

    Check full article : How to set value of a property using Reflection?

    full code if you are setting value for nullable type

    public static void SetValue(object inputObject, string propertyName, object propertyVal)
    {
        //find out the type
        Type type = inputObject.GetType();
    
        //get the property information based on the type
        System.Reflection.PropertyInfo propertyInfo = type.GetProperty(propertyName);
    
        //find the property type
        Type propertyType = propertyInfo.PropertyType;
    
        //Convert.ChangeType does not handle conversion to nullable types
        //if the property type is nullable, we need to get the underlying type of the property
        var targetType = IsNullableType(propertyType) ? Nullable.GetUnderlyingType(propertyType) : propertyType;
    
        //Returns an System.Object with the specified System.Type and whose value is
        //equivalent to the specified object.
        propertyVal = Convert.ChangeType(propertyVal, targetType);
    
        //Set the value of the property
        propertyInfo.SetValue(inputObject, propertyVal, null);
    
    }
    private static bool IsNullableType(Type type)
    {
        return type.IsGenericType && type.GetGenericTypeDefinition().Equals(typeof(Nullable<>));
    }
    

    you need to convert value like this i.e you need to convert value to your property type like as below

    PropertyInfo info = t.GetProperty("Value");
    object value = null;
    try 
    { 
        value = System.Convert.ChangeType(123, 
            Nullable.GetUnderlyingType(info.PropertyType));
    } 
    catch (InvalidCastException)
    {
        return;
    }
    propertyInfo.SetValue(obj, value, null);
    

    you need to do this because you cannot convert any arbirtary value to given type…so you need to convert it like this

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

Sidebar

Related Questions

If I have an IEnumerable where ClassA exposes an ID property of type long.
I have a class called Question that has a property called Type. Based on
I have written a script image.php that is quite long, but I've just copied
I have a property of type uint on my entity. Something like: public class
If i have a property of type object in the DataContext. How can i
I have a class with property type of Point ( struct in .NET Framework).
I have a problem where in some cases (appears to be where property type
I have an object with a Property of type byte[ , ,*] now i'd
I have a object (product), with a property of type 'array' e.g. product.tags =
Suppose I have some class which has a property actor_ of type Actor .

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.