Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Calling C# assembly functions having same name differing only by case, in VB.NET

0.00/5 (No votes)
5 Aug 2004 1  
Calling C# assembly functions having same name differing only by case, in VB.NET.

Problem

I faced this issue today. I wanted to call a function written in C# from my VB.NET code, but I found out that the coder of the library had not followed Microsoft guidelines for interoperability and had used same name for two functions differing only by case having the same signature. I didn't have access to the C# code, so was helpless as VB.NET does not allow me to use any of these functions. It gives a compile time error:

Overload resolution failed because no accessible 'f<function> is most specific for these arguments: <function names> : Not most specific

Solution

In this case, we need to use Reflection. At least, I could only find this solution.

Suppose my C# assembly code looks like the following:

namespace CompTest
{
  /// <summary>

  /// Summary description for Class1.

  /// </summary>

  public class Class1
  {
    public string cameLate()
    {
      return "He came late";
    }

    public string camelAte()
    {
      return "Camel Ate Him";
    }
  }
}

We can call the function camelAte in VB.NET as follows:

Dim CSClass As New CompTest.Class1
Dim ReturnValue As Object
ReturnValue = CSClass.GetType.InvokeMember("camelAte", _
              System.Reflection.BindingFlags.Instance Or _
              BindingFlags.Public Or BindingFlags.InvokeMethod, _
              Nothing, CSClass, Nothing, Nothing, Nothing, Nothing)
TextBox1.Text = ReturnValue

InvokeMember function used here Invokes the specified member, using the specified binding constraints and matching the specified argument list. You can find more information on MSDN.

To pass parameters, create an array of Object. Insert parameters required to call the function in the array. Pass the array as a parameter in the InvokeMethod function.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here