Another method for obtaining the out type in reflection

Source: Internet
Author: User
I saw the post posted by senior Yao Obtain the out type in reflection When using reflection, you forget a very powerful function called invokemember. Instead, you get a methodinfo or propertyinfo object and then call the corresponding method. In fact, directly calling the invoemember method is simpler, more efficient, and more universal. Add my previous post Call COM object through reflection To solve this problem, it is very simple. It seems that we have a foresight to package reflection operations.
Code As follows: Using directives # RegionUsing directives

UsingSystem;
UsingSystem. Collections. Generic;
UsingSystem. text;
UsingSystem. reflection;

# Endregion

Namespace Leleapplication1
{
Class Test
{
Public   Void Setvalue ( String Value1, Out   String Value2)
{
Value2= "Hello";
}

Public   Void Setvalue ( String Value1)
{

}

}
Class Program
{
Static   Void Main ( String [] ARGs)
{
Variant v = Variant. createinstance ( " Leleapplication1.test " );

Object [] Paras =   New   Object [] {"Xxx",Null} ;

Object O = V. invokemethod ( " Setvalue " , Paras );
Console. writeline (paras [ 1 ]);
}
}
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.