473,698 Members | 2,440 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Unable to invoking method via reflection

I am currently doing some R&D. The objective is to learn how to invoke
methods via reflection using the InvokeMember method. The InvokeMember
method throws an exception:

Method 'ReflectionTest .Originator.Add ToA' not found.

Here is the code:

using System;
using System.Diagnost ics;
using System.Collecti ons.Generic;
using System.Reflecti on;
using System.Text;

namespace ReflectionTest
{
public class Originator
{
private int a;

public Originator(int a)
{
this.a = a;
}

public int AddToA(int value)
{
a += value;
return a;
}
}

public class Program
{
static void Main(string[] args)
{
object obj = new Originator(5);

BindingFlags flags =
BindingFlags.Pu blic |
BindingFlags.In vokeMethod |
BindingFlags.In stance;

object result = obj.GetType().I nvokeMember(
"AddToA", flags, null, obj, new object[] { "5" });

Debug.WriteLine (result.ToStrin g());
}
}
}

Jan 24 '06 #1
3 6562
<ca******@gmail .com> wrote:
I am currently doing some R&D. The objective is to learn how to invoke
methods via reflection using the InvokeMember method. The InvokeMember
method throws an exception:
<snip>
public int AddToA(int value)
<snip>
object result = obj.GetType().I nvokeMember(
"AddToA", flags, null, obj, new object[] { "5" });


You're effectively trying to call AddToA("5").

"5" is not an int, it's a string. If you change "5" to 5, the code
works.

--
Jon Skeet - <sk***@pobox.co m>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too
Jan 24 '06 #2
> I am currently doing some R&D. The objective is to learn how to
invoke methods via reflection using the InvokeMember method. The
InvokeMember method throws an exception:

Method 'ReflectionTest .Originator.Add ToA' not found.

Here is the code:

using System;
using System.Diagnost ics;
using System.Collecti ons.Generic;
using System.Reflecti on;
using System.Text;
namespace ReflectionTest
{
public class Originator
{
private int a;
public Originator(int a)
{
this.a = a;
}
public int AddToA(int value)
{
a += value;
return a;
}
}
public class Program
{
static void Main(string[] args)
{
object obj = new Originator(5);
BindingFlags flags =
BindingFlags.Pu blic |
BindingFlags.In vokeMethod |
BindingFlags.In stance;
object result = obj.GetType().I nvokeMember(
"AddToA", flags, null, obj, new object[] { "5" });
Debug.WriteLine (result.ToStrin g());
}
}
}

Changing the line:
object result = obj.GetType().I nvokeMember(
"AddToA", flags, null, obj, new object[] { "5" });

to
object result = obj.GetType().I nvokeMember(
"AddToA", flags, null, obj, new object[] { 5 });

should do it. I didn't test it though.
Jan 24 '06 #3
>Method 'ReflectionTest .Originator.Add ToA' not found.
....
object result = obj.GetType().I nvokeMember(
"AddToA", flags, null, obj, new object[] { "5" });


The argument you're providing is a string so it will look for a
AddToA(string) method, not your AddToA(int). Try changing "5" to 5.
Mattias

--
Mattias Sjögren [C# MVP] mattias @ mvps.org
http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
Please reply only to the newsgroup.
Jan 24 '06 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
6400
by: Carlos G Benevides | last post by:
I have a ASP.Net web application that has two assemblies that run under com+. Under Windows 2000 the two assemblies are added to com+ automatically when instantiated from the web site. For this to happen we had to change the context in which asp.net runs from machine to SYSTEM by modifying the machine.config file. Under Windows 2003 no matter how asp.net is set to run as either machine or system. I get the following error: ...
3
1674
by: Ben Fidge | last post by:
Hi Is it possible, using Reflection, to determine at runtime the method(s) that are provided as handler for a given controls events? Also, once discovered, is it possible to manually invoke these methods? For example, suppose I have a ImageButton on a webform that has an on click handler associated. I would like to be able to discover the name of the event handling method(s) that handle this event, and manually invoke them.
2
1701
by: Nelson P. Varghese | last post by:
Please have a look at the code given below. The class named 'Class1' has two methods with the same name but with different case. Now how can I invoke these methods from VB. using System; namespace ClassLibrary1 { /// <summary> /// Summary description for Class1.
1
2363
by: Beenish Sahar Khan | last post by:
I'm using reflection to invoke some methods, now the general patteren of the function defination is private void FunctionName( argument1 , argument2) for some functions i don't need the argument2 but for some i do...is there any way using reflection to invoke the method but omit the last argument in some function definations while for other we use it. regards, Beenish Khan
2
7766
by: Jeff | last post by:
I am trying to dynamically load an assembly via reflection and then invoke a method of that assembly that will populate a custom type collection passed into the method byref. I am able to dynamically load both the DALC component (for the method call) and the Entity component (for the custom type collection to pass in), but I keep getting an error ( Message "Object type cannot be converted to target type.") when invoking the method. If I...
2
3146
by: Michael | last post by:
Running DB2 v7 UDB ("DB2 v7.1.0.93", "n031208" and "WR21333") on Windows XP, I am unable to find out why the "Build for Debug" option within Stored Procedure Builder is not enabled on Java stored procedures. It is enabled for SQL stored procedures. It is possible to "Build" and "Run" the Java SPs, it just isn't possible to click on the "Build for Debug" option. Thanks for any help in advance. Michael
4
1334
by: Gustavo Arriola | last post by:
Hello to all! I am trying to accede to a method of a class invoking(the class) from a variable string. The class is in other assembly called "infoInsumo" The code: Dim Tipo As Type = Type.GetType(Nodo) 'Nodo = "infoInsumo, infoInsumo" -->The assembly does not have root namespace Dim Clase As Object = Activator.CreateInstance(Tipo, Reflection.BindingFlags.CreateInstance)
3
1627
by: Rotsey | last post by:
Hi, I am getting a Exception has been thrown by the target of an invocation error when invoking a method Here is the crux of the code. I realise it could be a few things, any one give me an idea where to start looking.
0
2358
by: =?Utf-8?B?TW9ydGVuIFdlbm5ldmlrIFtDIyBNVlBd?= | last post by:
"Anders Borum" wrote: Hi Anders, I'm afraid the GetMethod() does not currently support filtering on generic parameters so you will have to loop through the existing methods using GetMethods() MethodInfo methods = t.GetMethods();
0
8676
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8608
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9161
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8867
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7732
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5860
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4370
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
2
2332
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2006
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.