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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T05:54:38+00:00 2026-05-28T05:54:38+00:00

I want to set property via .InvokeMember but I can not do this when

  • 0

I want to set property via .InvokeMember but I can not do this when casting is required,

public Class A{
  private B? _bb;
  public B? Bb{
    get{return _bb;}
    set {_bb=value;}
  }
}


public struct B {
  public B(int i){}
  public static implicit operator B(int p)
        {   B q = new B(p);
            return q;
        }
}

when I set it via Simple Code,it works.

A myA=new A();
myA.Bb=12;

but when I try to set it via InvokeMember,it does not work with casting,it just work for direct type.

this code works

A myA=new A();
myA.GetType().InvokeMember("Bb", 
   BindingFlags.SetProperty, null,myA, new object[] { new B(12) });

but the next line , gives error and says that it can not find property “Bb”

A myA=new A();
myA.GetType().InvokeMember("Bb", 
   BindingFlags.SetProperty, null,myA, new object[] { 12});

I have to use it by the last way,how should I have to 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-05-28T05:54:39+00:00Added an answer on May 28, 2026 at 5:54 am

    This won’t even compile. B is a reference type, thus you cannot use it as a generic argument for the Nullable<T> class:

    // Impossible
    private B? _bb;
    

    This being said, assuming you fix your code and declare B as a value type (using a struct for example), the problem is that Reflection doesn’t use implicit conversion operators.

    You may take a look at the following thread for one possible solution.

    Another possibility is to invoke the op_Implicit static method emitted by the compiler to convert the integer into an instance of B:

    A myA = new A();
    var op_Implicit = typeof(B).GetMethod("op_Implicit");
    B myB = (B)op_Implicit.Invoke(null, new object[] { 12 });
    myA.GetType().InvokeMember("Bb", BindingFlags.SetProperty, null, myA, new object[] { myB });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following property public MyType MyProperty {get;set;} I want to change this
If i want to set a colour property to something thats non-standard (i.e. not
I’ve got a class with a property that looks like this: [AllowHtml] [DataType(DataType.MultilineText)] public
I'm trying to set a Python class property outside of the class via the
I want to set a property of an object that is an array type.
I want to set the maxChars property of the TextInput of an editable ComboBox.
I want to set the tabIndex property for a row of textbox(s) that are
I want to set the MaxReceivedMessageSize property to some higher limit (Due to (400)
I want to set a DateTime property to the previous day at time 00:00:00.
I want to retrieve property value in jquery function and want to set it

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.